Version Description
Download this release
Release Info
Developer | AITpro |
Plugin | BulletProof Security |
Version | 6.0 |
Comparing to | |
See all releases |
Code changes from version 5.9 to 6.0
- admin/core/core.php +13 -5
- admin/css/bps-blue-ui-theme.css +2 -0
- admin/db-backup-security/db-backup-security.php +3 -0
- admin/email-log-settings/email-log-settings.php +1 -0
- admin/htaccess/secure.htaccess +1 -1
- admin/htaccess/wpadmin-secure.htaccess +1 -1
- admin/login/login.php +7 -2
- admin/maintenance/maintenance.php +1 -0
- admin/mscan/mscan.php +29 -1
- admin/security-log/security-log.php +1 -0
- admin/system-info/system-info.php +3 -1
- admin/theme-skin/theme-skin.php +1 -0
- admin/wizard/pwizard-autofix-setup.php +106 -83
- admin/wizard/wizard.php +8 -2
- bulletproof-security.php +4 -4
- includes/hud-autofix-setup.php +5 -4
- includes/hud-dismiss-functions.php +26 -4
- languages/bulletproof-security.pot +1915 -1924
- readme.txt +2 -2
admin/core/core.php
CHANGED
@@ -211,7 +211,8 @@ require_once WP_PLUGIN_DIR . '/bulletproof-security/admin/core/core-htaccess-cod
|
|
211 |
<h3 style="margin-top:0px"><?php _e('Root Folder BulletProof Mode (RBM)', 'bulletproof-security'); ?> <button id="bps-open-modal1" class="button bps-modal-button">
|
212 |
<img src="<?php echo plugins_url('/bulletproof-security/admin/images/question-mark-large.jpg'); ?>" style="margin:0px 0px 0px -10px" /></button></h3>
|
213 |
|
214 |
-
|
|
|
215 |
<p>
|
216 |
<?php
|
217 |
$text = '<strong>'.__('This Question Mark Help window is draggable (top) and resizable (bottom right corner)', 'bulletproof-security').'</strong><br><br>';
|
@@ -338,7 +339,8 @@ global $bps_version;
|
|
338 |
<h3><?php _e('wp-admin Folder BulletProof Mode (WBM)', 'bulletproof-security'); ?> <button id="bps-open-modal2" class="button bps-modal-button">
|
339 |
<img src="<?php echo plugins_url('/bulletproof-security/admin/images/question-mark-large.jpg'); ?>" style="margin:0px 0px 0px -10px" /></button></h3>
|
340 |
|
341 |
-
|
|
|
342 |
<p>
|
343 |
<?php
|
344 |
$text = '<strong>'.__('This Question Mark Help window is draggable (top) and resizable (bottom right corner)', 'bulletproof-security').'</strong><br><br>';
|
@@ -445,6 +447,7 @@ global $bps_version;
|
|
445 |
<img src="<?php echo plugins_url('/bulletproof-security/admin/images/question-mark-large.jpg'); ?>" style="margin:0px 0px 0px -10px" /></button></h3>
|
446 |
|
447 |
<div id="bps-modal-content5" class="bps-dialog-hide" title="<?php _e('Hidden Plugin Folders|Files Cron (HPF)', 'bulletproof-security'); ?>">
|
|
|
448 |
<p>
|
449 |
<?php
|
450 |
$text = '<strong>'.__('This Question Mark Help window is draggable (top) and resizable (bottom right corner)', 'bulletproof-security').'</strong><br><br>';
|
@@ -580,6 +583,7 @@ jQuery(document).ready(function($){
|
|
580 |
<img src="<?php echo plugins_url('/bulletproof-security/admin/images/question-mark-large.jpg'); ?>" style="margin:0px 0px 0px -10px" /></button></h3>
|
581 |
|
582 |
<div id="bps-modal-content6" class="bps-dialog-hide" title="<?php _e('MBM BulletProof Modes', 'bulletproof-security'); ?>">
|
|
|
583 |
<p>
|
584 |
<?php
|
585 |
$text = '<strong>'.__('This Question Mark Help window is draggable (top) and resizable (bottom right corner)', 'bulletproof-security').'</strong><br><br>';
|
@@ -673,6 +677,7 @@ function bpsPro_mbm_status() {
|
|
673 |
<img src="<?php echo plugins_url('/bulletproof-security/admin/images/question-mark-large.jpg'); ?>" style="margin:0px 0px 0px -10px" /></button></h3>
|
674 |
|
675 |
<div id="bps-modal-content7" class="bps-dialog-hide" title="<?php _e('BBM BulletProof Modes', 'bulletproof-security'); ?>">
|
|
|
676 |
<p>
|
677 |
<?php
|
678 |
$text = '<strong>'.__('This Question Mark Help window is draggable (top) and resizable (bottom right corner)', 'bulletproof-security').'</strong><br><br>';
|
@@ -766,6 +771,7 @@ function bpsPro_bbm_status() {
|
|
766 |
<img src="<?php echo plugins_url('/bulletproof-security/admin/images/question-mark-large.jpg'); ?>" style="margin:0px 0px 0px -10px" /></button></h3>
|
767 |
|
768 |
<div id="bps-modal-content8" class="bps-dialog-hide" title="<?php _e('Backup & Restore BPS htaccess Files', 'bulletproof-security'); ?>">
|
|
|
769 |
<p>
|
770 |
<?php
|
771 |
$text = '<strong>'.__('This Question Mark Help window is draggable (top) and resizable (bottom right corner)', 'bulletproof-security').'</strong><br><br>';
|
@@ -818,6 +824,7 @@ function bpsPro_bbm_status() {
|
|
818 |
<img src="<?php echo plugins_url('/bulletproof-security/admin/images/question-mark-large.jpg'); ?>" style="margin:0px 0px 0px -10px" /></button></h3>
|
819 |
|
820 |
<div id="bps-modal-content9" class="bps-dialog-hide" title="<?php _e('htaccess File Editing', 'bulletproof-security'); ?>">
|
|
|
821 |
<p>
|
822 |
<?php
|
823 |
$text = '<strong>'.__('This Question Mark Help window is draggable (top) and resizable (bottom right corner)', 'bulletproof-security').'</strong><br><br>';
|
@@ -1868,6 +1875,7 @@ function bpsWpadminFileDecrypt() {
|
|
1868 |
<img src="<?php echo plugins_url('/bulletproof-security/admin/images/question-mark-large.jpg'); ?>" style="margin:0px 0px 0px -10px" /></button></h3>
|
1869 |
|
1870 |
<div id="bps-modal-content10" class="bps-dialog-hide" title="<?php _e('Custom Code', 'bulletproof-security'); ?>">
|
|
|
1871 |
<p>
|
1872 |
<?php
|
1873 |
$text = '<strong>'.__('This Question Mark Help window is draggable (top) and resizable (bottom right corner)', 'bulletproof-security').'</strong><br><br>';
|
@@ -2198,9 +2206,7 @@ $text = '<h3><span class="blue-bold">'.__('Want even more security protection fo
|
|
2198 |
<?php echo '<p><span class="blue-bold">'; _e('Advanced Real-Time Alerting & Heads Up Dashboard Status Display: ', 'bulletproof-security'); echo '</span>'; _e('BPS Pro checks and displays error, warning, notifications and alert messages in real time. You can choose how you want these messages displayed to you with S-Monitor Monitoring & Alerting Options - Display in your WP Dashboard, BPS Pro pages only, Turned off, Email Alerts, Logging...', 'bulletproof-security'); echo '</p>'; ?>
|
2199 |
<img src="<?php echo plugins_url('/bulletproof-security/admin/images/bpspro-dashboard-status-display.jpg'); ?>" />
|
2200 |
|
2201 |
-
<?php echo '<p><span class="blue-bold">'; _e('
|
2202 |
-
|
2203 |
-
<?php echo '<p><span class="blue-bold">'; _e('Pro Tools: 16 mini-plugins: ', 'bulletproof-security'); echo '</span>'; _e('Online Base64 Decoder, Offline Base64 Decode|Encode, Mcrypt ~ Decrypt|Encrypt, Crypt Encryption, Scheduled Crons (display and reschedule/reset Cron Jobs), String|Function Finder (find any string - name of a function, code, text, etc. - in any files anywhere under your hosting account), String Replacer|Remover (search and replace any string/text/code in any files anywhere under your hosting account), DB String Finder (search your entire database for strings/text/code), DB Table Cleaner|Remover (empty/drop DB Tables), DNS Finder (find all DNS Records for websites by Domain Name), Ping Website|Server (check if a website domain is Up/Down/connection/blocking), cURL Scan (scan website Source Code for strings/text/code), Website Headers (check and display Headers using GET or HEAD Requests), WP Automatic Update (Turn WP Automatic Updates On or Off and other settings), Plugin Update Check (force new Plugin update check), XML-RPC Exploit Checker (check your website or a remote website to see if the website is protected against or vulnerable to an XML-RPC exploit).', 'bulletproof-security').'</p>'; ?>
|
2204 |
</div>
|
2205 |
|
2206 |
</td>
|
@@ -2214,6 +2220,8 @@ echo '<a href="'.esc_url( 'https://forum.ait-pro.com/forums/topic/bulletproof-se
|
|
2214 |
|
2215 |
<div class="pro-links">
|
2216 |
<?php
|
|
|
|
|
2217 |
echo sprintf( __( '<a href="%2$s" target="_blank" title="Link Opens in New Browser Window">Whats New in BPS Pro %1$s</a>' ), '16.3', 'https://www.ait-pro.com/aitpro-blog/5746/bulletproof-security-pro/whats-new-in-bulletproof-security-pro-16-3/' ).'<br>';
|
2218 |
echo sprintf( __( '<a href="%2$s" target="_blank" title="Link Opens in New Browser Window">Whats New in BPS Pro %1$s</a>' ), '16.2', 'https://www.ait-pro.com/aitpro-blog/5741/bulletproof-security-pro/whats-new-in-bulletproof-security-pro-16-2/' ).'<br>';
|
2219 |
echo sprintf( __( '<a href="%2$s" target="_blank" title="Link Opens in New Browser Window">Whats New in BPS Pro %1$s</a>' ), '16.1', 'https://www.ait-pro.com/aitpro-blog/5737/bulletproof-security-pro/whats-new-in-bulletproof-security-pro-16-1/' ).'<br>';
|
211 |
<h3 style="margin-top:0px"><?php _e('Root Folder BulletProof Mode (RBM)', 'bulletproof-security'); ?> <button id="bps-open-modal1" class="button bps-modal-button">
|
212 |
<img src="<?php echo plugins_url('/bulletproof-security/admin/images/question-mark-large.jpg'); ?>" style="margin:0px 0px 0px -10px" /></button></h3>
|
213 |
|
214 |
+
<div id="bps-modal-content1" class="bps-dialog-hide" title="<?php _e('Root Folder BulletProof Mode (RBM)', 'bulletproof-security'); ?>">
|
215 |
+
<div id="dialog-anchor" style="position:relative;top:-30px;left:0px"><a href="#"></a></div>
|
216 |
<p>
|
217 |
<?php
|
218 |
$text = '<strong>'.__('This Question Mark Help window is draggable (top) and resizable (bottom right corner)', 'bulletproof-security').'</strong><br><br>';
|
339 |
<h3><?php _e('wp-admin Folder BulletProof Mode (WBM)', 'bulletproof-security'); ?> <button id="bps-open-modal2" class="button bps-modal-button">
|
340 |
<img src="<?php echo plugins_url('/bulletproof-security/admin/images/question-mark-large.jpg'); ?>" style="margin:0px 0px 0px -10px" /></button></h3>
|
341 |
|
342 |
+
<div id="bps-modal-content2" class="bps-dialog-hide" title="<?php _e('Root Folder BulletProof Mode (RBM)', 'bulletproof-security'); ?>">
|
343 |
+
<div id="dialog-anchor" style="position:relative;top:-30px;left:0px"><a href="#"></a></div>
|
344 |
<p>
|
345 |
<?php
|
346 |
$text = '<strong>'.__('This Question Mark Help window is draggable (top) and resizable (bottom right corner)', 'bulletproof-security').'</strong><br><br>';
|
447 |
<img src="<?php echo plugins_url('/bulletproof-security/admin/images/question-mark-large.jpg'); ?>" style="margin:0px 0px 0px -10px" /></button></h3>
|
448 |
|
449 |
<div id="bps-modal-content5" class="bps-dialog-hide" title="<?php _e('Hidden Plugin Folders|Files Cron (HPF)', 'bulletproof-security'); ?>">
|
450 |
+
<div id="dialog-anchor" style="position:relative;top:-30px;left:0px"><a href="#"></a></div>
|
451 |
<p>
|
452 |
<?php
|
453 |
$text = '<strong>'.__('This Question Mark Help window is draggable (top) and resizable (bottom right corner)', 'bulletproof-security').'</strong><br><br>';
|
583 |
<img src="<?php echo plugins_url('/bulletproof-security/admin/images/question-mark-large.jpg'); ?>" style="margin:0px 0px 0px -10px" /></button></h3>
|
584 |
|
585 |
<div id="bps-modal-content6" class="bps-dialog-hide" title="<?php _e('MBM BulletProof Modes', 'bulletproof-security'); ?>">
|
586 |
+
<div id="dialog-anchor" style="position:relative;top:-30px;left:0px"><a href="#"></a></div>
|
587 |
<p>
|
588 |
<?php
|
589 |
$text = '<strong>'.__('This Question Mark Help window is draggable (top) and resizable (bottom right corner)', 'bulletproof-security').'</strong><br><br>';
|
677 |
<img src="<?php echo plugins_url('/bulletproof-security/admin/images/question-mark-large.jpg'); ?>" style="margin:0px 0px 0px -10px" /></button></h3>
|
678 |
|
679 |
<div id="bps-modal-content7" class="bps-dialog-hide" title="<?php _e('BBM BulletProof Modes', 'bulletproof-security'); ?>">
|
680 |
+
<div id="dialog-anchor" style="position:relative;top:-30px;left:0px"><a href="#"></a></div>
|
681 |
<p>
|
682 |
<?php
|
683 |
$text = '<strong>'.__('This Question Mark Help window is draggable (top) and resizable (bottom right corner)', 'bulletproof-security').'</strong><br><br>';
|
771 |
<img src="<?php echo plugins_url('/bulletproof-security/admin/images/question-mark-large.jpg'); ?>" style="margin:0px 0px 0px -10px" /></button></h3>
|
772 |
|
773 |
<div id="bps-modal-content8" class="bps-dialog-hide" title="<?php _e('Backup & Restore BPS htaccess Files', 'bulletproof-security'); ?>">
|
774 |
+
<div id="dialog-anchor" style="position:relative;top:-30px;left:0px"><a href="#"></a></div>
|
775 |
<p>
|
776 |
<?php
|
777 |
$text = '<strong>'.__('This Question Mark Help window is draggable (top) and resizable (bottom right corner)', 'bulletproof-security').'</strong><br><br>';
|
824 |
<img src="<?php echo plugins_url('/bulletproof-security/admin/images/question-mark-large.jpg'); ?>" style="margin:0px 0px 0px -10px" /></button></h3>
|
825 |
|
826 |
<div id="bps-modal-content9" class="bps-dialog-hide" title="<?php _e('htaccess File Editing', 'bulletproof-security'); ?>">
|
827 |
+
<div id="dialog-anchor" style="position:relative;top:-30px;left:0px"><a href="#"></a></div>
|
828 |
<p>
|
829 |
<?php
|
830 |
$text = '<strong>'.__('This Question Mark Help window is draggable (top) and resizable (bottom right corner)', 'bulletproof-security').'</strong><br><br>';
|
1875 |
<img src="<?php echo plugins_url('/bulletproof-security/admin/images/question-mark-large.jpg'); ?>" style="margin:0px 0px 0px -10px" /></button></h3>
|
1876 |
|
1877 |
<div id="bps-modal-content10" class="bps-dialog-hide" title="<?php _e('Custom Code', 'bulletproof-security'); ?>">
|
1878 |
+
<div id="dialog-anchor" style="position:relative;top:-30px;left:0px"><a href="#"></a></div>
|
1879 |
<p>
|
1880 |
<?php
|
1881 |
$text = '<strong>'.__('This Question Mark Help window is draggable (top) and resizable (bottom right corner)', 'bulletproof-security').'</strong><br><br>';
|
2206 |
<?php echo '<p><span class="blue-bold">'; _e('Advanced Real-Time Alerting & Heads Up Dashboard Status Display: ', 'bulletproof-security'); echo '</span>'; _e('BPS Pro checks and displays error, warning, notifications and alert messages in real time. You can choose how you want these messages displayed to you with S-Monitor Monitoring & Alerting Options - Display in your WP Dashboard, BPS Pro pages only, Turned off, Email Alerts, Logging...', 'bulletproof-security'); echo '</p>'; ?>
|
2207 |
<img src="<?php echo plugins_url('/bulletproof-security/admin/images/bpspro-dashboard-status-display.jpg'); ?>" />
|
2208 |
|
2209 |
+
<?php echo '<p><span class="blue-bold">'; _e('Pro Tools: 16 mini-plugins: ', 'bulletproof-security'); echo '</span>'; _e('Online Base64 Decoder, Offline Base64 Decode|Encode, Mcrypt ~ Decrypt|Encrypt, Crypt Encryption, Scheduled Crons (display and reschedule/reset Cron Jobs), String|Function Finder (find any string - name of a function, code, text, etc. - in any files anywhere under your hosting account), String Replacer|Remover (search and replace any string/text/code in any files anywhere under your hosting account), DB String Finder (search your entire database for strings/text/code), DB Table Cleaner|Remover (empty/drop DB Tables), DNS Finder (find all DNS Records for websites by Domain Name), Ping Website|Server (check if a website domain is Up/Down/connection/blocking), cURL Scan (scan website Source Code for strings/text/code), Website Headers (check and display Headers using GET or HEAD Requests), WP Automatic Update (Turn WP Automatic Updates On or Off and other settings), Plugin Update Check (force new Plugin update check), BPS Pro Plugin auto-update (Custom BPS Pro plugin auto-update options), XML-RPC Exploit Checker (check your website or a remote website to see if the website is protected against or vulnerable to an XML-RPC exploit).', 'bulletproof-security').'</p>'; ?>
|
|
|
|
|
2210 |
</div>
|
2211 |
|
2212 |
</td>
|
2220 |
|
2221 |
<div class="pro-links">
|
2222 |
<?php
|
2223 |
+
echo sprintf( __( '<a href="%2$s" target="_blank" title="Link Opens in New Browser Window">Whats New in BPS Pro %1$s</a>' ), '16.5', 'https://www.ait-pro.com/aitpro-blog/5768/bulletproof-security-pro/whats-new-in-bulletproof-security-pro-16-5//' ).'<br>';
|
2224 |
+
echo sprintf( __( '<a href="%2$s" target="_blank" title="Link Opens in New Browser Window">Whats New in BPS Pro %1$s</a>' ), '16.4', 'https://www.ait-pro.com/aitpro-blog/5762/bulletproof-security-pro/whats-new-in-bulletproof-security-pro-16-4/' ).'<br>';
|
2225 |
echo sprintf( __( '<a href="%2$s" target="_blank" title="Link Opens in New Browser Window">Whats New in BPS Pro %1$s</a>' ), '16.3', 'https://www.ait-pro.com/aitpro-blog/5746/bulletproof-security-pro/whats-new-in-bulletproof-security-pro-16-3/' ).'<br>';
|
2226 |
echo sprintf( __( '<a href="%2$s" target="_blank" title="Link Opens in New Browser Window">Whats New in BPS Pro %1$s</a>' ), '16.2', 'https://www.ait-pro.com/aitpro-blog/5741/bulletproof-security-pro/whats-new-in-bulletproof-security-pro-16-2/' ).'<br>';
|
2227 |
echo sprintf( __( '<a href="%2$s" target="_blank" title="Link Opens in New Browser Window">Whats New in BPS Pro %1$s</a>' ), '16.1', 'https://www.ait-pro.com/aitpro-blog/5737/bulletproof-security-pro/whats-new-in-bulletproof-security-pro-16-1/' ).'<br>';
|
admin/css/bps-blue-ui-theme.css
CHANGED
@@ -238,6 +238,8 @@ input.button.bps-button:active {background:#037c9a;border-color:#036881;color:wh
|
|
238 |
.button.bps-modal-button:hover {width:20px;height:20px;border:none;background:none}
|
239 |
.button.bps-modal-button:focus {width:20px;height:20px;border:none;background:none}
|
240 |
.button.bps-modal-button:active {width:20px;height:20px;border:none;background:none}
|
|
|
|
|
241 |
/* Messages | message buttons */
|
242 |
.bps-message-button a {text-decoration:none;}
|
243 |
#message .bps-message-button, #messageinner .bps-message-button {border-color:#bbb;color:#464646;background:#f2f2f2 url(../images/white-grad-active.png) repeat-x scroll left top;color:#fff;font-weight:bold;text-align:center;/* width:100px; *//* text-shadow:rgba(255,255,255,1) 0 1px 0; *//* text-shadow:rgba(0,0,0,0.4) 0 1px 0; */border-width:1px;text-decoration:none;font-size:12px!important;line-height:12px;padding:5px 8px;cursor:pointer;border-width:1px;border-style:solid;-moz-border-radius:11px;-khtml-border-radius:11px;-webkit-border-radius:11px;border-radius:11px;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;-khtml-box-sizing:content-box;box-sizing:content-box;}
|
238 |
.button.bps-modal-button:hover {width:20px;height:20px;border:none;background:none}
|
239 |
.button.bps-modal-button:focus {width:20px;height:20px;border:none;background:none}
|
240 |
.button.bps-modal-button:active {width:20px;height:20px;border:none;background:none}
|
241 |
+
/* New YouTube Video Tutorial Dialog buttons - makes the buttons appear to be links */
|
242 |
+
input#bps-video-start-button.button.bps-video-button {border:none;background-color:#fff;text-decoration:underline;padding:0;margin:0;font-weight:600}
|
243 |
/* Messages | message buttons */
|
244 |
.bps-message-button a {text-decoration:none;}
|
245 |
#message .bps-message-button, #messageinner .bps-message-button {border-color:#bbb;color:#464646;background:#f2f2f2 url(../images/white-grad-active.png) repeat-x scroll left top;color:#fff;font-weight:bold;text-align:center;/* width:100px; *//* text-shadow:rgba(255,255,255,1) 0 1px 0; *//* text-shadow:rgba(0,0,0,0.4) 0 1px 0; */border-width:1px;text-decoration:none;font-size:12px!important;line-height:12px;padding:5px 8px;cursor:pointer;border-width:1px;border-style:solid;-moz-border-radius:11px;-khtml-border-radius:11px;-webkit-border-radius:11px;border-radius:11px;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;-khtml-box-sizing:content-box;box-sizing:content-box;}
|
admin/db-backup-security/db-backup-security.php
CHANGED
@@ -282,6 +282,7 @@ function bpsSpinnerTableRefresh() {
|
|
282 |
<img src="<?php echo plugins_url('/bulletproof-security/admin/images/question-mark-large.jpg'); ?>" style="margin:0px 0px 0px -10px" /></button></h3>
|
283 |
|
284 |
<div id="bps-modal-content1" class="bps-dialog-hide" title="<?php _e('DB Backup', 'bulletproof-security'); ?>">
|
|
|
285 |
<p>
|
286 |
<?php
|
287 |
$text = '<strong>'.__('This Question Mark Help window is draggable (top) and resizable (bottom right corner)', 'bulletproof-security').'</strong><br><br>';
|
@@ -1262,6 +1263,7 @@ jQuery(document).ready(function($){
|
|
1262 |
<img src="<?php echo plugins_url('/bulletproof-security/admin/images/question-mark-large.jpg'); ?>" style="margin:0px 0px 0px -10px" /></button></h3>
|
1263 |
|
1264 |
<div id="bps-modal-content2" class="bps-dialog-hide" title="<?php _e('DB Backup Log', 'bulletproof-security'); ?>">
|
|
|
1265 |
<p>
|
1266 |
<?php
|
1267 |
|
@@ -1439,6 +1441,7 @@ jQuery(document).ready(function($){
|
|
1439 |
<img src="<?php echo plugins_url('/bulletproof-security/admin/images/question-mark-large.jpg'); ?>" style="margin:0px 0px 0px -10px" /></button></h3>
|
1440 |
|
1441 |
<div id="bps-modal-content3" class="bps-dialog-hide" title="<?php _e('DB Table Prefix Changer', 'bulletproof-security'); ?>">
|
|
|
1442 |
<p>
|
1443 |
<?php
|
1444 |
|
282 |
<img src="<?php echo plugins_url('/bulletproof-security/admin/images/question-mark-large.jpg'); ?>" style="margin:0px 0px 0px -10px" /></button></h3>
|
283 |
|
284 |
<div id="bps-modal-content1" class="bps-dialog-hide" title="<?php _e('DB Backup', 'bulletproof-security'); ?>">
|
285 |
+
<div id="dialog-anchor" style="position:relative;top:-30px;left:0px"><a href="#"></a></div>
|
286 |
<p>
|
287 |
<?php
|
288 |
$text = '<strong>'.__('This Question Mark Help window is draggable (top) and resizable (bottom right corner)', 'bulletproof-security').'</strong><br><br>';
|
1263 |
<img src="<?php echo plugins_url('/bulletproof-security/admin/images/question-mark-large.jpg'); ?>" style="margin:0px 0px 0px -10px" /></button></h3>
|
1264 |
|
1265 |
<div id="bps-modal-content2" class="bps-dialog-hide" title="<?php _e('DB Backup Log', 'bulletproof-security'); ?>">
|
1266 |
+
<div id="dialog-anchor" style="position:relative;top:-30px;left:0px"><a href="#"></a></div>
|
1267 |
<p>
|
1268 |
<?php
|
1269 |
|
1441 |
<img src="<?php echo plugins_url('/bulletproof-security/admin/images/question-mark-large.jpg'); ?>" style="margin:0px 0px 0px -10px" /></button></h3>
|
1442 |
|
1443 |
<div id="bps-modal-content3" class="bps-dialog-hide" title="<?php _e('DB Table Prefix Changer', 'bulletproof-security'); ?>">
|
1444 |
+
<div id="dialog-anchor" style="position:relative;top:-30px;left:0px"><a href="#"></a></div>
|
1445 |
<p>
|
1446 |
<?php
|
1447 |
|
admin/email-log-settings/email-log-settings.php
CHANGED
@@ -270,6 +270,7 @@ if ( isset( $_POST['bpsResetDismissSubmit'] ) && current_user_can('manage_option
|
|
270 |
<img src="<?php echo plugins_url('/bulletproof-security/admin/images/question-mark-large.jpg'); ?>" style="margin:0px 0px 0px -10px" /></button></h3>
|
271 |
|
272 |
<div id="bps-modal-content1" class="bps-dialog-hide" title="<?php _e('Alerts|Logs|Email Options', 'bulletproof-security'); ?>">
|
|
|
273 |
<p>
|
274 |
<?php
|
275 |
$text = '<strong>'.__('This Question Mark Help window is draggable (top) and resizable (bottom right corner)', 'bulletproof-security').'</strong><br><br>';
|
270 |
<img src="<?php echo plugins_url('/bulletproof-security/admin/images/question-mark-large.jpg'); ?>" style="margin:0px 0px 0px -10px" /></button></h3>
|
271 |
|
272 |
<div id="bps-modal-content1" class="bps-dialog-hide" title="<?php _e('Alerts|Logs|Email Options', 'bulletproof-security'); ?>">
|
273 |
+
<div id="dialog-anchor" style="position:relative;top:-30px;left:0px"><a href="#"></a></div>
|
274 |
<p>
|
275 |
<?php
|
276 |
$text = '<strong>'.__('This Question Mark Help window is draggable (top) and resizable (bottom right corner)', 'bulletproof-security').'</strong><br><br>';
|
admin/htaccess/secure.htaccess
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
# BULLETPROOF
|
2 |
|
3 |
# PHP/PHP.INI HANDLER/CACHE CODE
|
4 |
# Use BPS Custom Code to add php/php.ini Handler and Cache htaccess code and to save it permanently.
|
1 |
+
# BULLETPROOF 6.0 SECURE .HTACCESS
|
2 |
|
3 |
# PHP/PHP.INI HANDLER/CACHE CODE
|
4 |
# Use BPS Custom Code to add php/php.ini Handler and Cache htaccess code and to save it permanently.
|
admin/htaccess/wpadmin-secure.htaccess
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
# BULLETPROOF
|
2 |
|
3 |
# DO NOT ADD URL REWRITING IN THIS FILE OR WORDPRESS WILL BREAK
|
4 |
# RewriteRule ^(.*)$ - [F] works in /wp-admin without breaking WordPress
|
1 |
+
# BULLETPROOF 6.0 WP-ADMIN SECURE .HTACCESS
|
2 |
|
3 |
# DO NOT ADD URL REWRITING IN THIS FILE OR WORDPRESS WILL BREAK
|
4 |
# RewriteRule ^(.*)$ - [F] works in /wp-admin without breaking WordPress
|
admin/login/login.php
CHANGED
@@ -196,6 +196,7 @@ $bps_bottomDiv = '</p></div>';
|
|
196 |
<img src="<?php echo plugins_url('/bulletproof-security/admin/images/question-mark-large.jpg'); ?>" style="margin:0px 0px 0px -10px" /></button></h3>
|
197 |
|
198 |
<div id="bps-modal-content1" class="bps-dialog-hide" title="<?php _e('Login Security & Monitoring', 'bulletproof-security'); ?>">
|
|
|
199 |
<p>
|
200 |
<?php
|
201 |
$text = '<strong>'.__('This Question Mark Help window is draggable (top) and resizable (bottom right corner)', 'bulletproof-security').'</strong><br><br>';
|
@@ -820,6 +821,7 @@ jQuery(document).ready(function($){
|
|
820 |
<img src="<?php echo plugins_url('/bulletproof-security/admin/images/question-mark-large.jpg'); ?>" style="margin:0px 0px 0px -10px" /></button></h3>
|
821 |
|
822 |
<div id="bps-modal-content2" class="bps-dialog-hide" title="<?php _e('JTC-Lite', 'bulletproof-security'); ?>">
|
|
|
823 |
<p>
|
824 |
<?php
|
825 |
$text = '<strong>'.__('This Question Mark Help window is draggable (top) and resizable (bottom right corner)', 'bulletproof-security').'</strong><br><br>';
|
@@ -1339,6 +1341,8 @@ function bpsJTCDecrypt() {
|
|
1339 |
|
1340 |
<div id="bps-modal-content3" class="bps-dialog-hide" title="<?php _e('Idle Session Logout|Auth Cookie Expiration', 'bulletproof-security'); ?>">
|
1341 |
|
|
|
|
|
1342 |
<table width="100%" border="0" cellspacing="0" cellpadding="0" class="bps-readme-table">
|
1343 |
<tr>
|
1344 |
<td class="bps-readme-table-td">
|
@@ -1804,6 +1808,7 @@ if ( isset( $_POST['Submit-ACE-Options'] ) && current_user_can('manage_options')
|
|
1804 |
$ACE_on_off = ! isset($BPS_ACE_options['bps_ace']) ? '' : $BPS_ACE_options['bps_ace'];
|
1805 |
$ACE_Expiration = ! empty($BPS_ACE_options['bps_ace_expiration']) ? $BPS_ACE_options['bps_ace_expiration'] : '2880';
|
1806 |
$ACE_RM_Expiration = ! empty($BPS_ACE_options['bps_ace_rememberme_expiration']) ? $BPS_ACE_options['bps_ace_rememberme_expiration'] : '20160';
|
|
|
1807 |
$ACE_exceptions = isset($BPS_ACE_options['bps_ace_user_account_exceptions']) ? esc_html($BPS_ACE_options['bps_ace_user_account_exceptions']) : '';
|
1808 |
|
1809 |
$bps_ace_administrator = ! empty($BPS_ACE_options['bps_ace_administrator']) ? checked( $BPS_ACE_options['bps_ace_administrator'], 1, false ) : '';
|
@@ -1841,7 +1846,7 @@ if ( isset( $_POST['Submit-ACE-Options'] ) && current_user_can('manage_options')
|
|
1841 |
<td>
|
1842 |
<label><strong><?php _e('Enable|Disable Remember Me Checkbox:', 'bulletproof-security'); ?></strong></label><br />
|
1843 |
<label><strong><i><?php _e('Check to Disable. Uncheck to Enable. See the Question Mark help button for details.', 'bulletproof-security'); ?></i></strong></label><br />
|
1844 |
-
<input type="checkbox" name="bps_ace_rememberme_disable" value="1" <?php
|
1845 |
</td>
|
1846 |
</tr>
|
1847 |
<tr>
|
@@ -1909,8 +1914,8 @@ if ( isset( $_POST['Submit-ACE-Options'] ) && current_user_can('manage_options')
|
|
1909 |
<img src="<?php echo plugins_url('/bulletproof-security/admin/images/question-mark-large.jpg'); ?>" style="margin:0px 0px 0px -10px" /></button></h3>
|
1910 |
|
1911 |
<div id="bps-modal-content4" class="bps-dialog-hide" title="<?php _e('Force Strong Passwords', 'bulletproof-security'); ?>">
|
|
|
1912 |
<p>
|
1913 |
-
|
1914 |
<?php
|
1915 |
$text = '<strong>'.__('This Question Mark Help window is draggable (top) and resizable (bottom right corner)', 'bulletproof-security').'</strong><br><br>';
|
1916 |
echo $text;
|
196 |
<img src="<?php echo plugins_url('/bulletproof-security/admin/images/question-mark-large.jpg'); ?>" style="margin:0px 0px 0px -10px" /></button></h3>
|
197 |
|
198 |
<div id="bps-modal-content1" class="bps-dialog-hide" title="<?php _e('Login Security & Monitoring', 'bulletproof-security'); ?>">
|
199 |
+
<div id="dialog-anchor" style="position:relative;top:-30px;left:0px"><a href="#"></a></div>
|
200 |
<p>
|
201 |
<?php
|
202 |
$text = '<strong>'.__('This Question Mark Help window is draggable (top) and resizable (bottom right corner)', 'bulletproof-security').'</strong><br><br>';
|
821 |
<img src="<?php echo plugins_url('/bulletproof-security/admin/images/question-mark-large.jpg'); ?>" style="margin:0px 0px 0px -10px" /></button></h3>
|
822 |
|
823 |
<div id="bps-modal-content2" class="bps-dialog-hide" title="<?php _e('JTC-Lite', 'bulletproof-security'); ?>">
|
824 |
+
<div id="dialog-anchor" style="position:relative;top:-30px;left:0px"><a href="#"></a></div>
|
825 |
<p>
|
826 |
<?php
|
827 |
$text = '<strong>'.__('This Question Mark Help window is draggable (top) and resizable (bottom right corner)', 'bulletproof-security').'</strong><br><br>';
|
1341 |
|
1342 |
<div id="bps-modal-content3" class="bps-dialog-hide" title="<?php _e('Idle Session Logout|Auth Cookie Expiration', 'bulletproof-security'); ?>">
|
1343 |
|
1344 |
+
<div id="dialog-anchor" style="position:relative;top:-30px;left:0px"><a href="#"></a></div>
|
1345 |
+
|
1346 |
<table width="100%" border="0" cellspacing="0" cellpadding="0" class="bps-readme-table">
|
1347 |
<tr>
|
1348 |
<td class="bps-readme-table-td">
|
1808 |
$ACE_on_off = ! isset($BPS_ACE_options['bps_ace']) ? '' : $BPS_ACE_options['bps_ace'];
|
1809 |
$ACE_Expiration = ! empty($BPS_ACE_options['bps_ace_expiration']) ? $BPS_ACE_options['bps_ace_expiration'] : '2880';
|
1810 |
$ACE_RM_Expiration = ! empty($BPS_ACE_options['bps_ace_rememberme_expiration']) ? $BPS_ACE_options['bps_ace_rememberme_expiration'] : '20160';
|
1811 |
+
$bps_ace_rememberme_disable = ! empty($BPS_ACE_options['bps_ace_rememberme_disable']) ? checked( $BPS_ACE_options['bps_ace_rememberme_disable'], 1, false ) : '';
|
1812 |
$ACE_exceptions = isset($BPS_ACE_options['bps_ace_user_account_exceptions']) ? esc_html($BPS_ACE_options['bps_ace_user_account_exceptions']) : '';
|
1813 |
|
1814 |
$bps_ace_administrator = ! empty($BPS_ACE_options['bps_ace_administrator']) ? checked( $BPS_ACE_options['bps_ace_administrator'], 1, false ) : '';
|
1846 |
<td>
|
1847 |
<label><strong><?php _e('Enable|Disable Remember Me Checkbox:', 'bulletproof-security'); ?></strong></label><br />
|
1848 |
<label><strong><i><?php _e('Check to Disable. Uncheck to Enable. See the Question Mark help button for details.', 'bulletproof-security'); ?></i></strong></label><br />
|
1849 |
+
<input type="checkbox" name="bps_ace_rememberme_disable" value="1" <?php echo esc_html($bps_ace_rememberme_disable); ?> /><label><?php _e(' Disable & do not display the Remember Me checkbox', 'bulletproof-security'); ?></label><br />
|
1850 |
</td>
|
1851 |
</tr>
|
1852 |
<tr>
|
1914 |
<img src="<?php echo plugins_url('/bulletproof-security/admin/images/question-mark-large.jpg'); ?>" style="margin:0px 0px 0px -10px" /></button></h3>
|
1915 |
|
1916 |
<div id="bps-modal-content4" class="bps-dialog-hide" title="<?php _e('Force Strong Passwords', 'bulletproof-security'); ?>">
|
1917 |
+
<div id="dialog-anchor" style="position:relative;top:-30px;left:0px"><a href="#"></a></div>
|
1918 |
<p>
|
|
|
1919 |
<?php
|
1920 |
$text = '<strong>'.__('This Question Mark Help window is draggable (top) and resizable (bottom right corner)', 'bulletproof-security').'</strong><br><br>';
|
1921 |
echo $text;
|
admin/maintenance/maintenance.php
CHANGED
@@ -198,6 +198,7 @@ $bps_bottomDiv = '</p></div>';
|
|
198 |
<img src="<?php echo plugins_url('/bulletproof-security/admin/images/question-mark-large.jpg'); ?>" style="margin:0px 0px 0px -10px" /></button></h3>
|
199 |
|
200 |
<div id="bps-modal-content1" class="bps-dialog-hide" style="background-color:#fff; padding:0px 10px 10px 10px;" title="<?php _e('Maintenance Mode', 'bulletproof-security'); ?>">
|
|
|
201 |
<p>
|
202 |
<?php
|
203 |
$text = '<strong>'.__('This Question Mark Help window is draggable (top) and resizable (bottom right corner)', 'bulletproof-security').'</strong><br><br>';
|
198 |
<img src="<?php echo plugins_url('/bulletproof-security/admin/images/question-mark-large.jpg'); ?>" style="margin:0px 0px 0px -10px" /></button></h3>
|
199 |
|
200 |
<div id="bps-modal-content1" class="bps-dialog-hide" style="background-color:#fff; padding:0px 10px 10px 10px;" title="<?php _e('Maintenance Mode', 'bulletproof-security'); ?>">
|
201 |
+
<div id="dialog-anchor" style="position:relative;top:-30px;left:0px"><a href="#"></a></div>
|
202 |
<p>
|
203 |
<?php
|
204 |
$text = '<strong>'.__('This Question Mark Help window is draggable (top) and resizable (bottom right corner)', 'bulletproof-security').'</strong><br><br>';
|
admin/mscan/mscan.php
CHANGED
@@ -233,6 +233,7 @@ bpsPro_Core_mscan_deny_all();
|
|
233 |
<img src="<?php echo plugins_url('/bulletproof-security/admin/images/question-mark-large.jpg'); ?>" style="margin:0px 0px 0px -10px" /></button></h3>
|
234 |
|
235 |
<div id="bps-modal-content1" class="bps-dialog-hide" title="<?php _e('MScan', 'bulletproof-security'); ?>">
|
|
|
236 |
<p>
|
237 |
<?php
|
238 |
$text = '<strong>'.__('This Question Mark Help window is draggable (top) and resizable (bottom right corner)', 'bulletproof-security').'</strong><br><br>';
|
@@ -1694,6 +1695,20 @@ if ( isset( $_POST['Submit-MScan-Suspect-Form'] ) && current_user_can('manage_op
|
|
1694 |
$safe_rows = 'safe';
|
1695 |
$MScanFilesRows = $wpdb->get_results( $wpdb->prepare("SELECT * FROM $MStable WHERE mscan_type != %s AND mscan_status != %s AND mscan_status != %s", $db_rows, $clean_rows, $safe_rows ) );
|
1696 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1697 |
echo '<div id="MScanSuspectcheckall" style="">';
|
1698 |
echo '<table class="widefat" style="margin-bottom:20px;">';
|
1699 |
echo '<thead>';
|
@@ -1745,7 +1760,17 @@ if ( isset( $_POST['Submit-MScan-Suspect-Form'] ) && current_user_can('manage_op
|
|
1745 |
|
1746 |
echo "<td><input type=\"checkbox\" id=\"unignorefile\" name=\"mscan[$row->mscan_path]\" value=\"unignorefile\" class=\"unignorefileALL\" /><br><span style=\"font-size:10px;\">".__('Unignore', 'bulletproof-security')."</span></td>";
|
1747 |
|
1748 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1749 |
echo '<td>'.$row->mscan_path.'</td>';
|
1750 |
|
1751 |
if ( preg_match( '/Altered\sor\sunknown(.*)/', $row->mscan_pattern ) ) {
|
@@ -2103,6 +2128,7 @@ jQuery(document).ready(function($){
|
|
2103 |
<h3 style="margin:0px 0px 10px 0px;"><?php _e('MScan Log', 'bulletproof-security'); ?> <button id="bps-open-modal2" class="button bps-modal-button"><img src="<?php echo plugins_url('/bulletproof-security/admin/images/question-mark-large.jpg'); ?>" style="margin:0px 0px 0px -10px" /></button></h3>
|
2104 |
|
2105 |
<div id="bps-modal-content2" class="bps-dialog-hide" title="<?php _e('MScan Log', 'bulletproof-security'); ?>">
|
|
|
2106 |
<p>
|
2107 |
<?php
|
2108 |
|
@@ -2331,6 +2357,7 @@ jQuery(document).ready(function($){
|
|
2331 |
<img src="<?php echo plugins_url('/bulletproof-security/admin/images/question-mark-large.jpg'); ?>" style="margin:0px 0px 0px -10px" /></button></h3>
|
2332 |
|
2333 |
<div id="bps-modal-content3" class="bps-dialog-hide" title="<?php _e('MScan Report', 'bulletproof-security'); ?>">
|
|
|
2334 |
<p>
|
2335 |
<?php
|
2336 |
|
@@ -3046,6 +3073,7 @@ bpsPro_mscan_report();
|
|
3046 |
<img src="<?php echo plugins_url('/bulletproof-security/admin/images/question-mark-large.jpg'); ?>" style="margin:0px 0px 0px -10px" /></button></h3>
|
3047 |
|
3048 |
<div id="bps-modal-content4" class="bps-dialog-hide" title="<?php _e('MScan Saved Reports', 'bulletproof-security'); ?>">
|
|
|
3049 |
<p>
|
3050 |
<?php
|
3051 |
|
233 |
<img src="<?php echo plugins_url('/bulletproof-security/admin/images/question-mark-large.jpg'); ?>" style="margin:0px 0px 0px -10px" /></button></h3>
|
234 |
|
235 |
<div id="bps-modal-content1" class="bps-dialog-hide" title="<?php _e('MScan', 'bulletproof-security'); ?>">
|
236 |
+
<div id="dialog-anchor" style="position:relative;top:-30px;left:0px"><a href="#"></a></div>
|
237 |
<p>
|
238 |
<?php
|
239 |
$text = '<strong>'.__('This Question Mark Help window is draggable (top) and resizable (bottom right corner)', 'bulletproof-security').'</strong><br><br>';
|
1695 |
$safe_rows = 'safe';
|
1696 |
$MScanFilesRows = $wpdb->get_results( $wpdb->prepare("SELECT * FROM $MStable WHERE mscan_type != %s AND mscan_status != %s AND mscan_status != %s", $db_rows, $clean_rows, $safe_rows ) );
|
1697 |
|
1698 |
+
$wp_config_file = ABSPATH . 'wp-config.php';
|
1699 |
+
$wp_settings_file = ABSPATH . 'wp-settings.php';
|
1700 |
+
$wp_load_file = ABSPATH . 'wp-load.php';
|
1701 |
+
$wp_login_file = ABSPATH . 'wp-login.php';
|
1702 |
+
$wp_blog_header_file = ABSPATH . 'wp-blog-header.php';
|
1703 |
+
$wp_index_file = ABSPATH . 'index.php';
|
1704 |
+
|
1705 |
+
$wp_config_forward_slashes = str_replace( '\\', "/", $wp_config_file );
|
1706 |
+
$wp_settings_forward_slashes = str_replace( '\\', "/", $wp_settings_file );
|
1707 |
+
$wp_load_forward_slashes = str_replace( '\\', "/", $wp_load_file );
|
1708 |
+
$wp_login_forward_slashes = str_replace( '\\', "/", $wp_login_file );
|
1709 |
+
$wp_blog_header_forward_slashes = str_replace( '\\', "/", $wp_blog_header_file );
|
1710 |
+
$wp_index_forward_slashes = str_replace( '\\', "/", $wp_index_file );
|
1711 |
+
|
1712 |
echo '<div id="MScanSuspectcheckall" style="">';
|
1713 |
echo '<table class="widefat" style="margin-bottom:20px;">';
|
1714 |
echo '<thead>';
|
1760 |
|
1761 |
echo "<td><input type=\"checkbox\" id=\"unignorefile\" name=\"mscan[$row->mscan_path]\" value=\"unignorefile\" class=\"unignorefileALL\" /><br><span style=\"font-size:10px;\">".__('Unignore', 'bulletproof-security')."</span></td>";
|
1762 |
|
1763 |
+
$mscan_path_forward_slashes = str_replace( '\\', "/", $row->mscan_path );
|
1764 |
+
|
1765 |
+
if ( ! in_array( $mscan_path_forward_slashes, $wp_core_root_files ) ) {
|
1766 |
+
|
1767 |
+
echo "<td><input type=\"checkbox\" id=\"deletefile\" name=\"mscan[$row->mscan_path]\" value=\"deletefile\" class=\"deletefileALL\" /><br><span style=\"font-size:10px;\">".__('Delete', 'bulletproof-security')."</span></td>";
|
1768 |
+
|
1769 |
+
} else {
|
1770 |
+
|
1771 |
+
echo "<td>---</td>";
|
1772 |
+
}
|
1773 |
+
|
1774 |
echo '<td>'.$row->mscan_path.'</td>';
|
1775 |
|
1776 |
if ( preg_match( '/Altered\sor\sunknown(.*)/', $row->mscan_pattern ) ) {
|
2128 |
<h3 style="margin:0px 0px 10px 0px;"><?php _e('MScan Log', 'bulletproof-security'); ?> <button id="bps-open-modal2" class="button bps-modal-button"><img src="<?php echo plugins_url('/bulletproof-security/admin/images/question-mark-large.jpg'); ?>" style="margin:0px 0px 0px -10px" /></button></h3>
|
2129 |
|
2130 |
<div id="bps-modal-content2" class="bps-dialog-hide" title="<?php _e('MScan Log', 'bulletproof-security'); ?>">
|
2131 |
+
<div id="dialog-anchor" style="position:relative;top:-30px;left:0px"><a href="#"></a></div>
|
2132 |
<p>
|
2133 |
<?php
|
2134 |
|
2357 |
<img src="<?php echo plugins_url('/bulletproof-security/admin/images/question-mark-large.jpg'); ?>" style="margin:0px 0px 0px -10px" /></button></h3>
|
2358 |
|
2359 |
<div id="bps-modal-content3" class="bps-dialog-hide" title="<?php _e('MScan Report', 'bulletproof-security'); ?>">
|
2360 |
+
<div id="dialog-anchor" style="position:relative;top:-30px;left:0px"><a href="#"></a></div>
|
2361 |
<p>
|
2362 |
<?php
|
2363 |
|
3073 |
<img src="<?php echo plugins_url('/bulletproof-security/admin/images/question-mark-large.jpg'); ?>" style="margin:0px 0px 0px -10px" /></button></h3>
|
3074 |
|
3075 |
<div id="bps-modal-content4" class="bps-dialog-hide" title="<?php _e('MScan Saved Reports', 'bulletproof-security'); ?>">
|
3076 |
+
<div id="dialog-anchor" style="position:relative;top:-30px;left:0px"><a href="#"></a></div>
|
3077 |
<p>
|
3078 |
<?php
|
3079 |
|
admin/security-log/security-log.php
CHANGED
@@ -216,6 +216,7 @@ if ( isset( $_POST['Submit-Error-Log-On'] ) && current_user_can('manage_options'
|
|
216 |
<img src="<?php echo plugins_url('/bulletproof-security/admin/images/question-mark-large.jpg'); ?>" style="margin:0px 0px 0px -10px" /></button></h3>
|
217 |
|
218 |
<div id="bps-modal-content9" class="bps-dialog-hide" title="<?php _e('Security Log', 'bulletproof-security'); ?>">
|
|
|
219 |
<p>
|
220 |
<?php
|
221 |
$text = '<strong>'.__('This Question Mark Help window is draggable (top) and resizable (bottom right corner)', 'bulletproof-security').'</strong><br><br>';
|
216 |
<img src="<?php echo plugins_url('/bulletproof-security/admin/images/question-mark-large.jpg'); ?>" style="margin:0px 0px 0px -10px" /></button></h3>
|
217 |
|
218 |
<div id="bps-modal-content9" class="bps-dialog-hide" title="<?php _e('Security Log', 'bulletproof-security'); ?>">
|
219 |
+
<div id="dialog-anchor" style="position:relative;top:-30px;left:0px"><a href="#"></a></div>
|
220 |
<p>
|
221 |
<?php
|
222 |
$text = '<strong>'.__('This Question Mark Help window is draggable (top) and resizable (bottom right corner)', 'bulletproof-security').'</strong><br><br>';
|
admin/system-info/system-info.php
CHANGED
@@ -72,7 +72,8 @@ $bps_bottomDiv = '</p></div>';
|
|
72 |
<h3><?php _e('File|Folder Permissions & UID', 'bulletproof-security'); ?> <button id="bps-open-modal1" class="button bps-modal-button">
|
73 |
<img src="<?php echo plugins_url('/bulletproof-security/admin/images/question-mark-large.jpg'); ?>" style="margin:0px 0px 0px -10px" /></button></h3>
|
74 |
|
75 |
-
|
|
|
76 |
<p>
|
77 |
<?php
|
78 |
$text = '<strong>'.__('This Question Mark Help window is draggable (top) and resizable (bottom right corner)', 'bulletproof-security').'</strong><br><br>';
|
@@ -708,6 +709,7 @@ function bpsPro_count_network_activated_plugins($count) {
|
|
708 |
<h3><button id="bps-open-modal600" class="button bps-encrypt-button"><?php _e('Get Plugins|Themes List', 'bulletproof-security'); ?></button></h3>
|
709 |
|
710 |
<div id="bps-modal-content600" class="bps-dialog-hide" title="<?php _e('Get Plugins|Themes List', 'bulletproof-security'); ?>">
|
|
|
711 |
<p><?php $text = '<strong>'.__('This window is draggable (top) and resizable (bottom right corner)', 'bulletproof-security').'</strong><br><br>';
|
712 |
echo $text; bpsPro_get_plugins_list(); ?></p>
|
713 |
</div>
|
72 |
<h3><?php _e('File|Folder Permissions & UID', 'bulletproof-security'); ?> <button id="bps-open-modal1" class="button bps-modal-button">
|
73 |
<img src="<?php echo plugins_url('/bulletproof-security/admin/images/question-mark-large.jpg'); ?>" style="margin:0px 0px 0px -10px" /></button></h3>
|
74 |
|
75 |
+
<div id="bps-modal-content1" class="bps-dialog-hide" title="<?php _e('File|Folder Permissions & UID', 'bulletproof-security'); ?>">
|
76 |
+
<div id="dialog-anchor" style="position:relative;top:-30px;left:0px"><a href="#"></a></div>
|
77 |
<p>
|
78 |
<?php
|
79 |
$text = '<strong>'.__('This Question Mark Help window is draggable (top) and resizable (bottom right corner)', 'bulletproof-security').'</strong><br><br>';
|
709 |
<h3><button id="bps-open-modal600" class="button bps-encrypt-button"><?php _e('Get Plugins|Themes List', 'bulletproof-security'); ?></button></h3>
|
710 |
|
711 |
<div id="bps-modal-content600" class="bps-dialog-hide" title="<?php _e('Get Plugins|Themes List', 'bulletproof-security'); ?>">
|
712 |
+
<div id="dialog-anchor" style="position:relative;top:-30px;left:0px"><a href="#"></a></div>
|
713 |
<p><?php $text = '<strong>'.__('This window is draggable (top) and resizable (bottom right corner)', 'bulletproof-security').'</strong><br><br>';
|
714 |
echo $text; bpsPro_get_plugins_list(); ?></p>
|
715 |
</div>
|
admin/theme-skin/theme-skin.php
CHANGED
@@ -74,6 +74,7 @@ $bps_bottomDiv = '</p></div>';
|
|
74 |
<img src="<?php echo plugins_url('/bulletproof-security/admin/images/question-mark-large.jpg'); ?>" style="margin:0px 0px 0px -10px" /></button></h3>
|
75 |
|
76 |
<div id="bps-modal-content1" class="bps-dialog-hide" title="<?php _e('UI|UX Options', 'bulletproof-security'); ?>">
|
|
|
77 |
<p><?php $text = '<strong>'.__('This Question Mark Help window is draggable (top) and resizable (bottom right corner)', 'bulletproof-security').'</strong><br><br>';
|
78 |
|
79 |
echo $text;
|
74 |
<img src="<?php echo plugins_url('/bulletproof-security/admin/images/question-mark-large.jpg'); ?>" style="margin:0px 0px 0px -10px" /></button></h3>
|
75 |
|
76 |
<div id="bps-modal-content1" class="bps-dialog-hide" title="<?php _e('UI|UX Options', 'bulletproof-security'); ?>">
|
77 |
+
<div id="dialog-anchor" style="position:relative;top:-30px;left:0px"><a href="#"></a></div>
|
78 |
<p><?php $text = '<strong>'.__('This Question Mark Help window is draggable (top) and resizable (bottom right corner)', 'bulletproof-security').'</strong><br><br>';
|
79 |
|
80 |
echo $text;
|
admin/wizard/pwizard-autofix-setup.php
CHANGED
@@ -15,28 +15,27 @@ Root Custom Code Text Box:
|
|
15 |
*/
|
16 |
|
17 |
// WPSC setup & cleanup: Creates the WPSC htaccess code in BPS Custom Code & the WPSC code in the wp-config.php file.
|
18 |
-
// Unlock the wp-config.php file if it is locked & writes the WPSC wp-config.php code
|
19 |
-
// The Setup Wizard will either lock or not lock the wp-config.php file in later processing.
|
20 |
// Note: htaccess code is created in the site root htaccess file for GWIOD site types.
|
|
|
|
|
21 |
function bpsPro_Pwizard_Autofix_WPSC() {
|
22 |
-
|
23 |
-
|
24 |
$AutoFix_Options = get_option('bulletproof_security_options_wizard_autofix');
|
25 |
|
26 |
-
if ( $AutoFix_Options['bps_wizard_autofix'] == 'Off' ) {
|
27 |
return;
|
28 |
}
|
29 |
|
30 |
$wpsc_plugin = 'wp-super-cache/wp-cache.php';
|
31 |
$wpsc_plugin_active = in_array( $wpsc_plugin, apply_filters('active_plugins', get_option('active_plugins')));
|
32 |
|
33 |
-
// CUSTOM CODE TOP PHP/PHP.INI HANDLER/CACHE CODE
|
34 |
$CC_Options_root = get_option('bulletproof_security_options_customcode');
|
35 |
$bps_customcode_cache = htmlspecialchars_decode( $CC_Options_root['bps_customcode_one'], ENT_QUOTES );
|
36 |
$bps_customcode_cache_array = array();
|
37 |
$bps_customcode_cache_array[] = $bps_customcode_cache;
|
38 |
-
$cc_cache_array = array();
|
39 |
-
|
40 |
if ( $wpsc_plugin_active == 1 || is_plugin_active_for_network( $wpsc_plugin ) ) {
|
41 |
|
42 |
if ( ! is_multisite() ) {
|
@@ -51,81 +50,79 @@ global $cache_enabled, $super_cache_enabled, $wp_cache_mod_rewrite;
|
|
51 |
if ( $bpsSiteUrl != $bpsHomeUrl ) {
|
52 |
$text = '<strong><font color="green">'.__('WP Super Cache (WPSC) Plugin AutoSetup not required: ', 'bulletproof-security').'</font><font color="black"><span class="arq-tooltip-sw-20"><img src="'.plugins_url('/bulletproof-security/admin/images/question-mark.png').'" style="position:relative;top:3px;right:1px;" /><span>'.__('GWIOD site types do not require AutoSetup because WPSC creates htaccess code in the site root htaccess file.', 'bulletproof-security').'</span></span></font></strong><br>';
|
53 |
echo $text;
|
54 |
-
|
|
|
55 |
}
|
56 |
|
57 |
-
|
|
|
|
|
|
|
|
|
|
|
58 |
|
59 |
-
|
60 |
-
|
61 |
-
## Important Note: If dots are used (.*) then newlines and spaces are ignored when using the /s modifier.
|
62 |
-
// preg_match_all() would need to be used to preg_replace duplicate wpsc placeholder text. Wait and see - Do not do that for now.
|
63 |
-
// Cleans up extra Newlines, Returns & whitespaces.
|
64 |
-
foreach ( $bps_customcode_cache_array as $key => $value ) {
|
65 |
-
|
66 |
-
if ( preg_match( '/#\sBEGIN\sWPSuperCache(.*)#\sEND\sWPSuperCache/s', $value, $matches ) ) {
|
67 |
-
$value = preg_replace( '/#\sBEGIN\sWPSuperCache(.*)#\sEND\sWPSuperCache/s', "", $value);
|
68 |
-
}
|
69 |
-
|
70 |
-
if ( preg_match( '/#\sBEGIN\sWPSuperCache\n\n#\sEND\sWPSuperCache/', $value, $matches ) ) {
|
71 |
-
$value = preg_replace( '/#\sBEGIN\sWPSuperCache\n\n#\sEND\sWPSuperCache/', "", $value);
|
72 |
-
}
|
73 |
-
|
74 |
-
if ( preg_match('/(\n\r){2,}/', $value, $matches) ) {
|
75 |
-
$value = preg_replace("/(\n\r){2,}/", "\n", $value);
|
76 |
-
}
|
77 |
-
|
78 |
-
$cc_cache_array[] = trim( $value, " \t\n\r");
|
79 |
}
|
80 |
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
85 |
|
86 |
-
|
87 |
|
88 |
-
|
89 |
-
|
90 |
-
|
|
|
91 |
|
92 |
-
|
93 |
-
$sapi_type = php_sapi_name();
|
94 |
-
$wpconfigBackup = WP_CONTENT_DIR . '/bps-backup/autorestore/root-files/wp-config.php';
|
95 |
-
$perms_wpconfig = substr(sprintf('%o', fileperms($wpconfig)), -4); // 0644 / 0404
|
96 |
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
wp_cache_create_advanced_cache();
|
107 |
-
|
108 |
-
extract( wpsc_get_htaccess_info() );
|
109 |
-
|
110 |
-
$wpsc_htaccess_cache_code = esc_html( $rules );
|
111 |
-
$wpsc_htaccess_cache_code_array = array();
|
112 |
-
$wpsc_htaccess_cache_code_array[] = "# BEGIN WPSuperCache\n".$wpsc_htaccess_cache_code."# END WPSuperCache\n";
|
113 |
-
|
114 |
-
$bps_customcode_cache_merge = array_merge($cc_cache_array, $wpsc_htaccess_cache_code_array);
|
115 |
-
$cc_cache_unique = array_unique($bps_customcode_cache_merge);
|
116 |
-
|
117 |
-
// Needs to be \n\n
|
118 |
-
$bps_customcode_cache_implode = implode( "\n\n", $cc_cache_unique );
|
119 |
-
|
120 |
-
} else {
|
121 |
|
122 |
-
$
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
129 |
if ( ! is_multisite() ) {
|
130 |
|
131 |
$Root_CC_Options = array(
|
@@ -169,16 +166,42 @@ global $cache_enabled, $super_cache_enabled, $wp_cache_mod_rewrite;
|
|
169 |
foreach( $Root_CC_Options as $key => $value ) {
|
170 |
update_option('bulletproof_security_options_customcode', $Root_CC_Options);
|
171 |
}
|
172 |
-
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
177 |
} else {
|
178 |
-
|
179 |
## WPSC Cleanup: Either not installed or activated. Removes any/all WPSC htaccess code from BPS Custom Code and Root htaccess file.
|
180 |
if ( $wpsc_plugin_active != 1 && ! is_plugin_active_for_network( $wpsc_plugin ) ) {
|
181 |
-
|
182 |
## Remove any existing WPSC htaccess code in Custom Code from the $cc_cache_array.
|
183 |
foreach ( $bps_customcode_cache_array as $key => $value ) {
|
184 |
|
@@ -239,11 +262,11 @@ global $cache_enabled, $super_cache_enabled, $wp_cache_mod_rewrite;
|
|
239 |
);
|
240 |
}
|
241 |
|
242 |
-
foreach( $Root_CC_Options as $key => $value ) {
|
243 |
update_option('bulletproof_security_options_customcode', $Root_CC_Options);
|
244 |
}
|
245 |
|
246 |
-
## Remove any existing
|
247 |
$rootHtaccess = ABSPATH . '.htaccess';
|
248 |
|
249 |
if ( file_exists($rootHtaccess) ) {
|
@@ -276,7 +299,7 @@ global $cache_enabled, $super_cache_enabled, $wp_cache_mod_rewrite;
|
|
276 |
echo $text;
|
277 |
}
|
278 |
}
|
279 |
-
}
|
280 |
}
|
281 |
|
282 |
// W3TC Setup & Cleanup: Creates the W3TC htaccess code in BPS Custom Code & the W3TC code in the wp-config.php file.
|
15 |
*/
|
16 |
|
17 |
// WPSC setup & cleanup: Creates the WPSC htaccess code in BPS Custom Code & the WPSC code in the wp-config.php file.
|
|
|
|
|
18 |
// Note: htaccess code is created in the site root htaccess file for GWIOD site types.
|
19 |
+
// 6.0: No longer doing AutoSetup for WPSC. WPSC no longer writes its htaccess code to the root htaccess file unless
|
20 |
+
// the generic WP Rewrite htaccess code exists.
|
21 |
function bpsPro_Pwizard_Autofix_WPSC() {
|
22 |
+
|
|
|
23 |
$AutoFix_Options = get_option('bulletproof_security_options_wizard_autofix');
|
24 |
|
25 |
+
if ( isset($AutoFix_Options['bps_wizard_autofix']) && $AutoFix_Options['bps_wizard_autofix'] == 'Off' ) {
|
26 |
return;
|
27 |
}
|
28 |
|
29 |
$wpsc_plugin = 'wp-super-cache/wp-cache.php';
|
30 |
$wpsc_plugin_active = in_array( $wpsc_plugin, apply_filters('active_plugins', get_option('active_plugins')));
|
31 |
|
32 |
+
// 1. CUSTOM CODE TOP PHP/PHP.INI HANDLER/CACHE CODE
|
33 |
$CC_Options_root = get_option('bulletproof_security_options_customcode');
|
34 |
$bps_customcode_cache = htmlspecialchars_decode( $CC_Options_root['bps_customcode_one'], ENT_QUOTES );
|
35 |
$bps_customcode_cache_array = array();
|
36 |
$bps_customcode_cache_array[] = $bps_customcode_cache;
|
37 |
+
$cc_cache_array = array();
|
38 |
+
|
39 |
if ( $wpsc_plugin_active == 1 || is_plugin_active_for_network( $wpsc_plugin ) ) {
|
40 |
|
41 |
if ( ! is_multisite() ) {
|
50 |
if ( $bpsSiteUrl != $bpsHomeUrl ) {
|
51 |
$text = '<strong><font color="green">'.__('WP Super Cache (WPSC) Plugin AutoSetup not required: ', 'bulletproof-security').'</font><font color="black"><span class="arq-tooltip-sw-20"><img src="'.plugins_url('/bulletproof-security/admin/images/question-mark.png').'" style="position:relative;top:3px;right:1px;" /><span>'.__('GWIOD site types do not require AutoSetup because WPSC creates htaccess code in the site root htaccess file.', 'bulletproof-security').'</span></span></font></strong><br>';
|
52 |
echo $text;
|
53 |
+
|
54 |
+
return;
|
55 |
}
|
56 |
|
57 |
+
## Remove any existing WPSC htaccess code in Custom Code from the $cc_cache_array so that new wpsc htaccess code is created each time.
|
58 |
+
## Remove any existing WPSC placeholder text if it exists. Note: If duplicate wpsc placeholders exists then a problem may occur.
|
59 |
+
## Important Note: If dots are used (.*) then newlines and spaces are ignored when using the /s modifier.
|
60 |
+
// preg_match_all() would need to be used to preg_replace duplicate wpsc placeholder text. Wait and see - Do not do that for now.
|
61 |
+
// Cleans up extra Newlines, Returns & whitespaces.
|
62 |
+
foreach ( $bps_customcode_cache_array as $key => $value ) {
|
63 |
|
64 |
+
if ( preg_match( '/#\sBEGIN\sWPSuperCache(.*)#\sEND\sWPSuperCache/s', $value, $matches ) ) {
|
65 |
+
$value = preg_replace( '/#\sBEGIN\sWPSuperCache(.*)#\sEND\sWPSuperCache/s', "", $value);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
66 |
}
|
67 |
|
68 |
+
if ( preg_match( '/#\sBEGIN\sWPSuperCache\n\n#\sEND\sWPSuperCache/', $value, $matches ) ) {
|
69 |
+
$value = preg_replace( '/#\sBEGIN\sWPSuperCache\n\n#\sEND\sWPSuperCache/', "", $value);
|
70 |
+
}
|
71 |
+
|
72 |
+
if ( preg_match('/(\n\r){2,}/', $value, $matches) ) {
|
73 |
+
$value = preg_replace("/(\n\r){2,}/", "\n", $value);
|
74 |
+
}
|
75 |
+
|
76 |
+
$cc_cache_array[] = trim( $value, " \t\n\r");
|
77 |
+
}
|
78 |
+
|
79 |
+
/* //not going to do anything with WPSC wp-config.php code
|
80 |
+
$wpconfig = ABSPATH . 'wp-config.php';
|
81 |
|
82 |
+
if ( ! file_exists( $wpconfig ) ) {
|
83 |
|
84 |
+
$text = '<strong><font color="#fb0101">'.__('Error: The Pre-Installation Wizard is unable to add the WP Super Cache WP_CACHE code in your wp-config.php file.', 'bulletproof-security').'</font><br>'.__('A wp-config.php file was NOT found in your WordPress website root folder. If you have moved your wp-config.php file to another folder location then you will need to either move the wp-config.php file back to its default WordPress folder location and run the Pre-Installation Wizard again or manually edit your wp-config.php file and add the WP Super Cache WP_CACHE code. Click this link for the steps to manually edit your wp-config.php file: ', 'bulletproof-security').'<a href="https://forum.ait-pro.com/forums/topic/manually-editing-the-wordpress-wp-config-php-file/" target="_blank" title="Link opens in a new Browser window">'.__('Manually Edit the WordPress wp-config.php file', 'bulletproof-security').'</a><br>';
|
85 |
+
echo $text;
|
86 |
+
}
|
87 |
+
*/
|
88 |
|
89 |
+
$rootHtaccess = ABSPATH . '.htaccess';
|
|
|
|
|
|
|
90 |
|
91 |
+
if ( file_exists($rootHtaccess) ) {
|
92 |
+
|
93 |
+
$sapi_type = php_sapi_name();
|
94 |
+
$permsRootHtaccess = substr(sprintf('%o', fileperms($rootHtaccess)), -4);
|
95 |
+
|
96 |
+
/*
|
97 |
+
if ( file_exists( $wpconfig ) ) {
|
98 |
+
|
99 |
+
$perms_wpconfig = substr(sprintf('%o', fileperms($wpconfig)), -4);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
100 |
|
101 |
+
if ( substr($sapi_type, 0, 6) != 'apache' || $perms_wpconfig != '0666' || $perms_wpconfig != '0777' ) { // Windows IIS, XAMPP, etc
|
102 |
+
chmod( $wpconfig, 0644 );
|
103 |
+
}
|
104 |
+
}
|
105 |
+
*/
|
106 |
+
|
107 |
+
if ( substr($sapi_type, 0, 6) != 'apache' || $permsRootHtaccess != '0666' || $permsRootHtaccess != '0777' ) {
|
108 |
+
chmod( $rootHtaccess, 0644 );
|
109 |
+
}
|
110 |
+
|
111 |
+
$root_htaccess_file_contents = file_get_contents($rootHtaccess);
|
112 |
+
|
113 |
+
$wpsc_htaccess_code = array();
|
114 |
+
|
115 |
+
## Remove the WPSC htaccess code from the Root htaccess file after putting any WPSC code into an array and updating the CC DB options.
|
116 |
+
if ( preg_match( '/#\sBEGIN\sWPSuperCache(.*)#\sEND\sWPSuperCache/s', $root_htaccess_file_contents, $matches ) ) {
|
117 |
+
$wpsc_htaccess_code[] = $matches[0];
|
118 |
+
$root_htaccess_file_contents = preg_replace( '/#\sBEGIN\sWPSuperCache(.*)#\sEND\sWPSuperCache/s', "", $root_htaccess_file_contents);
|
119 |
+
}
|
120 |
+
|
121 |
+
$bps_customcode_cache_merge = array_merge($cc_cache_array, $wpsc_htaccess_code);
|
122 |
+
$cc_cache_unique = array_unique($bps_customcode_cache_merge);
|
123 |
+
// needs to be \n
|
124 |
+
$bps_customcode_cache_implode = implode( "\n", $cc_cache_unique );
|
125 |
+
|
126 |
if ( ! is_multisite() ) {
|
127 |
|
128 |
$Root_CC_Options = array(
|
166 |
foreach( $Root_CC_Options as $key => $value ) {
|
167 |
update_option('bulletproof_security_options_customcode', $Root_CC_Options);
|
168 |
}
|
169 |
+
|
170 |
+
## Not going to do anything with WPSC wp-config.php code.
|
171 |
+
/*
|
172 |
+
define( 'WPCACHEHOME', 'C:\xampp\htdocs16\demo9\wp-content\plugins\wp-super-cache/' );
|
173 |
+
define('WP_CACHE', true);
|
174 |
+
*/
|
175 |
+
/*
|
176 |
+
if ( file_exists( $wpconfig ) ) {
|
177 |
+
$wp_config_contents = file_get_contents($wpconfig);
|
178 |
+
|
179 |
+
if ( ! preg_match( '/define(.*)\((.*)WP_CACHE(.*)(true|false)(.*)\);/', $wp_config_contents, $matches ) ) {
|
180 |
+
$wp_config_contents = preg_replace( '/<\?php(.*\s*){1}/', '<?php'."\ndefine('WP_CACHE', true);\n", $wp_config_contents);
|
181 |
+
file_put_contents($wpconfig, $wp_config_contents);
|
182 |
+
}
|
183 |
+
}
|
184 |
+
*/
|
185 |
+
|
186 |
+
## Remove LiteSpeed Cache htaccess code from the Root htaccess file
|
187 |
+
if ( file_put_contents($rootHtaccess, $root_htaccess_file_contents) ) {
|
188 |
+
|
189 |
+
$Root_Autolock = get_option('bulletproof_security_options_autolock');
|
190 |
+
|
191 |
+
if ( $Root_Autolock['bps_root_htaccess_autolock'] == 'On' ) {
|
192 |
+
chmod($rootHtaccess, 0404);
|
193 |
+
}
|
194 |
+
}
|
195 |
+
|
196 |
+
$text = '<strong><font color="green">'.__('WP Super Cache (WPSC) Plugin AutoSetup Successful: ', 'bulletproof-security').'</font><font color="black"><span class="arq-tooltip-sw-20"><img src="'.plugins_url('/bulletproof-security/admin/images/question-mark.png').'" style="position:relative;top:3px;right:1px;" /><span>'.__('Important Note: If you change any of your WP Super Cache settings at any time, re-run the Setup Wizards again.', 'bulletproof-security').'</span></span></font></strong><br>';
|
197 |
+
echo $text;
|
198 |
+
}
|
199 |
+
|
200 |
} else {
|
201 |
+
|
202 |
## WPSC Cleanup: Either not installed or activated. Removes any/all WPSC htaccess code from BPS Custom Code and Root htaccess file.
|
203 |
if ( $wpsc_plugin_active != 1 && ! is_plugin_active_for_network( $wpsc_plugin ) ) {
|
204 |
+
|
205 |
## Remove any existing WPSC htaccess code in Custom Code from the $cc_cache_array.
|
206 |
foreach ( $bps_customcode_cache_array as $key => $value ) {
|
207 |
|
262 |
);
|
263 |
}
|
264 |
|
265 |
+
foreach ( $Root_CC_Options as $key => $value ) {
|
266 |
update_option('bulletproof_security_options_customcode', $Root_CC_Options);
|
267 |
}
|
268 |
|
269 |
+
## Remove any existing LiteSpeed Cache htaccess code in the Root htaccess file.
|
270 |
$rootHtaccess = ABSPATH . '.htaccess';
|
271 |
|
272 |
if ( file_exists($rootHtaccess) ) {
|
299 |
echo $text;
|
300 |
}
|
301 |
}
|
302 |
+
}
|
303 |
}
|
304 |
|
305 |
// W3TC Setup & Cleanup: Creates the W3TC htaccess code in BPS Custom Code & the W3TC code in the wp-config.php file.
|
admin/wizard/wizard.php
CHANGED
@@ -375,11 +375,12 @@ $HFiles_options = get_option('bulletproof_security_options_htaccess_files');
|
|
375 |
bpsPro_Pwizard_Autofix_plugin_skip_bypass_wpadmin();
|
376 |
bpsPro_Pwizard_Autofix_BPSQSE_wpadmin();
|
377 |
// AutoSetup|AutoCleanup functions
|
378 |
-
|
|
|
379 |
bpsPro_Pwizard_Autofix_W3TC();
|
380 |
bpsPro_Pwizard_Autofix_Comet_Cache();
|
381 |
// 3.2: No longer offering autofix for the EPC plugin.
|
382 |
-
//bpsPro_Pwizard_Autofix_Endurance();
|
383 |
bpsPro_Pwizard_Autofix_WPFC();
|
384 |
bpsPro_Pwizard_Autofix_WPR();
|
385 |
bpsPro_Pwizard_Autofix_LSCACHE();
|
@@ -1086,6 +1087,8 @@ bpsPro_hfiles_inpage_message();
|
|
1086 |
|
1087 |
<div id="bps-modal-content1" class="bps-dialog-hide" title="<?php _e('Setup Wizard', 'bulletproof-security'); ?>">
|
1088 |
|
|
|
|
|
1089 |
<table width="100%" border="0" cellspacing="0" cellpadding="0" class="bps-readme-table">
|
1090 |
<tr>
|
1091 |
<td class="bps-readme-table-td">
|
@@ -1155,6 +1158,8 @@ bpsSetupWizardPrechecks();
|
|
1155 |
|
1156 |
<div id="bps-modal-content2" class="bps-dialog-hide" title="<?php _e('Setup Wizard Options', 'bulletproof-security'); ?>">
|
1157 |
|
|
|
|
|
1158 |
<table width="100%" border="0" cellspacing="0" cellpadding="0" class="bps-readme-table">
|
1159 |
<tr>
|
1160 |
<td class="bps-readme-table-td">
|
@@ -1755,6 +1760,7 @@ function bpsPro_network_subsites_gdmw_settings() {
|
|
1755 |
<img src="<?php echo plugins_url('/bulletproof-security/admin/images/question-mark-large.jpg'); ?>" style="margin:0px 0px 0px -10px" /></button></h3>
|
1756 |
|
1757 |
<div id="bps-modal-content3" class="bps-dialog-hide" title="<?php _e('Setup Wizard Export|Import', 'bulletproof-security'); ?>">
|
|
|
1758 |
<p>
|
1759 |
<?php
|
1760 |
$text = '<strong>'.__('This Question Mark Help window is draggable (top) and resizable (bottom right corner)', 'bulletproof-security').'</strong><br><br>';
|
375 |
bpsPro_Pwizard_Autofix_plugin_skip_bypass_wpadmin();
|
376 |
bpsPro_Pwizard_Autofix_BPSQSE_wpadmin();
|
377 |
// AutoSetup|AutoCleanup functions
|
378 |
+
// 6.0: WPSC cannot be AutoSetup anymore. WPSC no longer writes to the root htaccess file unless the generic WP Rewrite htaccess code exists.
|
379 |
+
// bpsPro_Pwizard_Autofix_WPSC();
|
380 |
bpsPro_Pwizard_Autofix_W3TC();
|
381 |
bpsPro_Pwizard_Autofix_Comet_Cache();
|
382 |
// 3.2: No longer offering autofix for the EPC plugin.
|
383 |
+
// bpsPro_Pwizard_Autofix_Endurance();
|
384 |
bpsPro_Pwizard_Autofix_WPFC();
|
385 |
bpsPro_Pwizard_Autofix_WPR();
|
386 |
bpsPro_Pwizard_Autofix_LSCACHE();
|
1087 |
|
1088 |
<div id="bps-modal-content1" class="bps-dialog-hide" title="<?php _e('Setup Wizard', 'bulletproof-security'); ?>">
|
1089 |
|
1090 |
+
<div id="dialog-anchor" style="position:relative;top:-30px;left:0px"><a href="#"></a></div>
|
1091 |
+
|
1092 |
<table width="100%" border="0" cellspacing="0" cellpadding="0" class="bps-readme-table">
|
1093 |
<tr>
|
1094 |
<td class="bps-readme-table-td">
|
1158 |
|
1159 |
<div id="bps-modal-content2" class="bps-dialog-hide" title="<?php _e('Setup Wizard Options', 'bulletproof-security'); ?>">
|
1160 |
|
1161 |
+
<div id="dialog-anchor" style="position:relative;top:-30px;left:0px"><a href="#"></a></div>
|
1162 |
+
|
1163 |
<table width="100%" border="0" cellspacing="0" cellpadding="0" class="bps-readme-table">
|
1164 |
<tr>
|
1165 |
<td class="bps-readme-table-td">
|
1760 |
<img src="<?php echo plugins_url('/bulletproof-security/admin/images/question-mark-large.jpg'); ?>" style="margin:0px 0px 0px -10px" /></button></h3>
|
1761 |
|
1762 |
<div id="bps-modal-content3" class="bps-dialog-hide" title="<?php _e('Setup Wizard Export|Import', 'bulletproof-security'); ?>">
|
1763 |
+
<div id="dialog-anchor" style="position:relative;top:-30px;left:0px"><a href="#"></a></div>
|
1764 |
<p>
|
1765 |
<?php
|
1766 |
$text = '<strong>'.__('This Question Mark Help window is draggable (top) and resizable (bottom right corner)', 'bulletproof-security').'</strong><br><br>';
|
bulletproof-security.php
CHANGED
@@ -5,7 +5,7 @@ Plugin URI: https://forum.ait-pro.com/read-me-first/
|
|
5 |
Text Domain: bulletproof-security
|
6 |
Domain Path: /languages/
|
7 |
Description: <strong>Feature Highlights:</strong> Setup Wizard • MScan Malware Scanner • .htaccess Website Security Protection (Firewalls) • Security Logging|HTTP Error Logging • DB Backup • DB Table Prefix Changer • Login Security & Monitoring • JTC-Lite Login Form Bot Lockout Protection • Idle Session Logout (ISL) • Auth Cookie Expiration (ACE) • System Info: Extensive System, Server and Security Status Information • FrontEnd|BackEnd Maintenance Mode • WP Automatic Update Options (BPS MU Tools must-use plugin) • Force Strong Passwords • Email Alerts When New Plugins And Themes Are Available.
|
8 |
-
Version:
|
9 |
Author: AITpro Website Security
|
10 |
Author URI: https://forum.ait-pro.com/read-me-first/
|
11 |
*/
|
@@ -33,9 +33,9 @@ Author URI: https://forum.ait-pro.com/read-me-first/
|
|
33 |
// and cannot access the global variables within functions in BPS. Luckily this does not break BPS or WordPress in any way and PHP.net states this is technically not an error.
|
34 |
global $bps_last_version, $bps_version, $bps_footer, $aitpro_bullet, $bps_topDiv, $bps_bottomDiv, $bpsPro_remote_addr, $bpsPro_http_client_ip, $bpsPro_http_forwarded, $bpsPro_http_x_forwarded_for, $bpsPro_http_x_cluster_client_ip, $bps_wpcontent_dir, $bps_plugin_dir, $plugin_hashes, $theme_hashes;
|
35 |
|
36 |
-
define( 'BULLETPROOF_VERSION', '
|
37 |
-
$bps_last_version = '5.
|
38 |
-
$bps_version = '
|
39 |
$bps_footer = '<div id="AITpro-link">' . __('BulletProof Security ', 'bulletproof-security') . esc_html($bps_version) . __(' Plugin by ', 'bulletproof-security') . '<a href="'.esc_url('https://www.ait-pro.com/').'" target="_blank" title="AITpro Website Security">' . __( 'AITpro Website Security', 'bulletproof-security') . '</a></div>';
|
40 |
$aitpro_bullet = '<img src="'.plugins_url('/bulletproof-security/admin/images/aitpro-bullet.png').'" style="padding:0px 3px 0px 3px;" />';
|
41 |
// Top div & bottom div
|
5 |
Text Domain: bulletproof-security
|
6 |
Domain Path: /languages/
|
7 |
Description: <strong>Feature Highlights:</strong> Setup Wizard • MScan Malware Scanner • .htaccess Website Security Protection (Firewalls) • Security Logging|HTTP Error Logging • DB Backup • DB Table Prefix Changer • Login Security & Monitoring • JTC-Lite Login Form Bot Lockout Protection • Idle Session Logout (ISL) • Auth Cookie Expiration (ACE) • System Info: Extensive System, Server and Security Status Information • FrontEnd|BackEnd Maintenance Mode • WP Automatic Update Options (BPS MU Tools must-use plugin) • Force Strong Passwords • Email Alerts When New Plugins And Themes Are Available.
|
8 |
+
Version: 6.0
|
9 |
Author: AITpro Website Security
|
10 |
Author URI: https://forum.ait-pro.com/read-me-first/
|
11 |
*/
|
33 |
// and cannot access the global variables within functions in BPS. Luckily this does not break BPS or WordPress in any way and PHP.net states this is technically not an error.
|
34 |
global $bps_last_version, $bps_version, $bps_footer, $aitpro_bullet, $bps_topDiv, $bps_bottomDiv, $bpsPro_remote_addr, $bpsPro_http_client_ip, $bpsPro_http_forwarded, $bpsPro_http_x_forwarded_for, $bpsPro_http_x_cluster_client_ip, $bps_wpcontent_dir, $bps_plugin_dir, $plugin_hashes, $theme_hashes;
|
35 |
|
36 |
+
define( 'BULLETPROOF_VERSION', '6.0' );
|
37 |
+
$bps_last_version = '5.9';
|
38 |
+
$bps_version = '6.0';
|
39 |
$bps_footer = '<div id="AITpro-link">' . __('BulletProof Security ', 'bulletproof-security') . esc_html($bps_version) . __(' Plugin by ', 'bulletproof-security') . '<a href="'.esc_url('https://www.ait-pro.com/').'" target="_blank" title="AITpro Website Security">' . __( 'AITpro Website Security', 'bulletproof-security') . '</a></div>';
|
40 |
$aitpro_bullet = '<img src="'.plugins_url('/bulletproof-security/admin/images/aitpro-bullet.png').'" style="padding:0px 3px 0px 3px;" />';
|
41 |
// Top div & bottom div
|
includes/hud-autofix-setup.php
CHANGED
@@ -15,12 +15,13 @@ function bps_HUD_autofix_setup_WP_Dashboard() {
|
|
15 |
return;
|
16 |
}
|
17 |
|
18 |
-
// 3.2: No longer offering
|
19 |
-
//bpsPro_EPC_plugin_check();
|
20 |
$w3tc_plugin = 'w3-total-cache/w3-total-cache.php';
|
21 |
-
$wpsc_plugin = 'wp-super-cache/wp-cache.php';
|
22 |
bpsPro_w3tc_htaccess_check($w3tc_plugin);
|
23 |
-
|
|
|
24 |
bpsPro_comet_cache_htaccess_check();
|
25 |
bpsPro_wpfc_htaccess_check();
|
26 |
bpsPro_wp_rocket_htaccess_check();
|
15 |
return;
|
16 |
}
|
17 |
|
18 |
+
// 3.2: No longer offering autosetup for the EPC plugin.
|
19 |
+
// bpsPro_EPC_plugin_check();
|
20 |
$w3tc_plugin = 'w3-total-cache/w3-total-cache.php';
|
21 |
+
// $wpsc_plugin = 'wp-super-cache/wp-cache.php';
|
22 |
bpsPro_w3tc_htaccess_check($w3tc_plugin);
|
23 |
+
// WPSC now requires manual setup. No longer doing autosetup for WPSC
|
24 |
+
// bpsPro_wpsc_htaccess_check($wpsc_plugin);
|
25 |
bpsPro_comet_cache_htaccess_check();
|
26 |
bpsPro_wpfc_htaccess_check();
|
27 |
bpsPro_wp_rocket_htaccess_check();
|
includes/hud-dismiss-functions.php
CHANGED
@@ -867,6 +867,9 @@ function bpsPro_hud_owner_uid_check_notice() {
|
|
867 |
}
|
868 |
}
|
869 |
|
|
|
|
|
|
|
870 |
$folder_script_uid_array_unique = array_unique($folder_script_uid_array);
|
871 |
$folder_fileowner_uid_array_unique = array_unique($folder_fileowner_uid_array);
|
872 |
|
@@ -875,6 +878,24 @@ function bpsPro_hud_owner_uid_check_notice() {
|
|
875 |
|
876 |
if ( $folder_script_uid_count != '1' || $folder_fileowner_uid_count != '1' ) {
|
877 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
878 |
global $current_user;
|
879 |
$user_id = $current_user->ID;
|
880 |
|
@@ -888,7 +909,7 @@ function bpsPro_hud_owner_uid_check_notice() {
|
|
888 |
$bps_base = str_replace( admin_url(), '', esc_html($_SERVER['REQUEST_URI']) ) . '&';
|
889 |
}
|
890 |
|
891 |
-
$text = '<div class="update-nag" style="background-color:#dfecf2;border:1px solid #999;font-size:1em;font-weight:600;padding:2px 5px;margin-top:2px;-moz-border-radius-topleft:3px;-webkit-border-top-left-radius:3px;-khtml-border-top-left-radius:3px;border-top-left-radius:3px;-moz-border-radius-topright:3px;-webkit-border-top-right-radius:3px;-khtml-border-top-right-radius:3px;border-top-right-radius:3px;-webkit-box-shadow: 3px 3px 5px -1px rgba(153,153,153,0.7);-moz-box-shadow: 3px 3px 5px -1px rgba(153,153,153,0.7);box-shadow: 3px 3px 5px -1px rgba(153,153,153,0.7);"><font color="#fb0101">'.__('Script|File Owner User ID Mismatch Notice', 'bulletproof-security').'</font><br>'.__('You have different Script or File Owner User ID\'s.
|
892 |
echo $text;
|
893 |
}
|
894 |
}
|
@@ -964,9 +985,10 @@ function bpsPro_hud_bpspro_sale() {
|
|
964 |
return;
|
965 |
}
|
966 |
|
967 |
-
$
|
|
|
968 |
|
969 |
-
if ( time() < $
|
970 |
|
971 |
global $current_user;
|
972 |
$user_id = $current_user->ID;
|
@@ -981,7 +1003,7 @@ function bpsPro_hud_bpspro_sale() {
|
|
981 |
$bps_base = str_replace( admin_url(), '', esc_html($_SERVER['REQUEST_URI']) ) . '&';
|
982 |
}
|
983 |
|
984 |
-
$text = '<div class="update-nag" style="background-color:#dfecf2;border:1px solid #999;font-size:1em;font-weight:600;padding:2px 5px;margin-top:2px;-moz-border-radius-topleft:3px;-webkit-border-top-left-radius:3px;-khtml-border-top-left-radius:3px;border-top-left-radius:3px;-moz-border-radius-topright:3px;-webkit-border-top-right-radius:3px;-khtml-border-top-right-radius:3px;border-top-right-radius:3px;-webkit-box-shadow: 3px 3px 5px -1px rgba(153,153,153,0.7);-moz-box-shadow: 3px 3px 5px -1px rgba(153,153,153,0.7);box-shadow: 3px 3px 5px -1px rgba(153,153,153,0.7);"><font color="blue">'.__('BPS Pro 25% Off Sale
|
985 |
echo $text;
|
986 |
}
|
987 |
}
|
867 |
}
|
868 |
}
|
869 |
|
870 |
+
// this is for testing mismatches
|
871 |
+
// array_push($folder_script_uid_array, '5');
|
872 |
+
|
873 |
$folder_script_uid_array_unique = array_unique($folder_script_uid_array);
|
874 |
$folder_fileowner_uid_array_unique = array_unique($folder_fileowner_uid_array);
|
875 |
|
878 |
|
879 |
if ( $folder_script_uid_count != '1' || $folder_fileowner_uid_count != '1' ) {
|
880 |
|
881 |
+
$uid_array_diff_script = array_diff( $folder_script_uid_array_unique, $folder_fileowner_uid_array_unique );
|
882 |
+
$uid_array_diff_fileowner = array_diff( $folder_fileowner_uid_array_unique, $folder_script_uid_array_unique );
|
883 |
+
$mismatch = '';
|
884 |
+
|
885 |
+
if ( ! empty($uid_array_diff_script) ) {
|
886 |
+
|
887 |
+
foreach ( $uid_array_diff_script as $key => $value ) {
|
888 |
+
$mismatch = __('Folder|File', 'bullletproof-security') .': ' . $key . __(' Script UID', 'bulletproof-security').': '. $value .'<br>';
|
889 |
+
}
|
890 |
+
}
|
891 |
+
|
892 |
+
if ( ! empty($uid_array_diff_fileowner) ) {
|
893 |
+
|
894 |
+
foreach ( $uid_array_diff_fileowner as $key => $value ) {
|
895 |
+
$mismatch = __('Folder|File', 'bullletproof-security') .': ' . $key . __(' File Owner UID', 'bulletproof-security').': '. $value .'<br>';
|
896 |
+
}
|
897 |
+
}
|
898 |
+
|
899 |
global $current_user;
|
900 |
$user_id = $current_user->ID;
|
901 |
|
909 |
$bps_base = str_replace( admin_url(), '', esc_html($_SERVER['REQUEST_URI']) ) . '&';
|
910 |
}
|
911 |
|
912 |
+
$text = '<div class="update-nag" style="background-color:#dfecf2;border:1px solid #999;font-size:1em;font-weight:600;padding:2px 5px;margin-top:2px;-moz-border-radius-topleft:3px;-webkit-border-top-left-radius:3px;-khtml-border-top-left-radius:3px;border-top-left-radius:3px;-moz-border-radius-topright:3px;-webkit-border-top-right-radius:3px;-khtml-border-top-right-radius:3px;border-top-right-radius:3px;-webkit-box-shadow: 3px 3px 5px -1px rgba(153,153,153,0.7);-moz-box-shadow: 3px 3px 5px -1px rgba(153,153,153,0.7);box-shadow: 3px 3px 5px -1px rgba(153,153,153,0.7);"><font color="#fb0101">'.__('Script|File Owner User ID Mismatch Notice', 'bulletproof-security').'</font><br>'.__('You have different Script or File Owner User ID\'s for this folder or file: ', 'bulletproof-security').$mismatch.__('All Script and File Owner User ID\'s must be the same in order for BPS and other things to function normally.', 'bulletproof-security').'<br>'.__('For help fixing this problem, please post a new reply in this forum topic: ', 'bulletproof-security').'<a href="https://forum.ait-pro.com/forums/topic/scriptfile-owner-user-id-mismatch-notice-on-all-sites-but-no-mismatches/" target="_blank" title="Link opens in a new Browser window">'.__('Script|File Owner User ID Mismatch Forum Topic', 'bulletproof-security').'</a><br>'.__('To Dismiss this Notice click the Dismiss Notice button below. To Reset Dismiss Notices click the Reset|Recheck Dismiss Notices button on the Alerts|Logs|Email Options page.', 'bulletproof-security').'<br><div style="float:left;margin:3px 0px 3px 0px;padding:2px 6px 2px 6px;background-color:#e8e8e8;border:1px solid gray;"><a href="'.$bps_base.'bpsPro_owner_uid_nag_ignore=0'.'" style="text-decoration:none;font-weight:bold;">'.__('Dismiss Notice', 'bulletproof-security').'</a></div></div>';
|
913 |
echo $text;
|
914 |
}
|
915 |
}
|
985 |
return;
|
986 |
}
|
987 |
|
988 |
+
$april_11_2022 = '1649692893';
|
989 |
+
$gmt_offset = get_option( 'gmt_offset' ) * 3600;
|
990 |
|
991 |
+
if ( time() + $gmt_offset < $april_11_2022 ) {
|
992 |
|
993 |
global $current_user;
|
994 |
$user_id = $current_user->ID;
|
1003 |
$bps_base = str_replace( admin_url(), '', esc_html($_SERVER['REQUEST_URI']) ) . '&';
|
1004 |
}
|
1005 |
|
1006 |
+
$text = '<div class="update-nag" style="background-color:#dfecf2;border:1px solid #999;font-size:1em;font-weight:600;padding:2px 5px;margin-top:2px;-moz-border-radius-topleft:3px;-webkit-border-top-left-radius:3px;-khtml-border-top-left-radius:3px;border-top-left-radius:3px;-moz-border-radius-topright:3px;-webkit-border-top-right-radius:3px;-khtml-border-top-right-radius:3px;border-top-right-radius:3px;-webkit-box-shadow: 3px 3px 5px -1px rgba(153,153,153,0.7);-moz-box-shadow: 3px 3px 5px -1px rgba(153,153,153,0.7);box-shadow: 3px 3px 5px -1px rgba(153,153,153,0.7);"><font color="blue">'.__('BPS Pro 25% Off Sale April 4 - April 11', 'bulletproof-security').'</font><br>'.__('One-time Purchase Price: $52.50. No Recurring Yearly Costs Or Subscriptions. Unlimited installations. Free Upgrades For Life. Free Technical Support For Life.', 'bulletproof-security').'<br><a href="https://affiliates.ait-pro.com/po/" target="_blank" title="Buy BPS Pro">'.__('Buy BPS Pro', 'bulletproof-security').'</a><div style="min-height:5px"></div>'.__('To Dismiss this Notice click the Dismiss Notice button below. To Reset Dismiss Notices click the Reset|Recheck Dismiss Notices button on the Alerts|Logs|Email Options page.', 'bulletproof-security').'<br><div style="float:left;margin:3px 0px 3px 0px;padding:2px 6px 2px 6px;background-color:#e8e8e8;border:1px solid gray;"><a href="'.$bps_base.'bpsPro_bpspro_sale_nag_ignore=0'.'" style="text-decoration:none;font-weight:bold;">'.__('Dismiss Notice', 'bulletproof-security').'</a></div></div>';
|
1007 |
echo $text;
|
1008 |
}
|
1009 |
}
|
languages/bulletproof-security.pot
CHANGED
@@ -3,7 +3,7 @@ msgid ""
|
|
3 |
msgstr ""
|
4 |
"Project-Id-Version: bulletproof-security\n"
|
5 |
"Report-Msgid-Bugs-To: \n"
|
6 |
-
"POT-Creation-Date: 2022-
|
7 |
"PO-Revision-Date: 2015-06-20 19:13-0800\n"
|
8 |
"Last-Translator: Ed Alexander <edward@ait-pro.com>\n"
|
9 |
"Language-Team: AITpro <info@ait-pro.com>\n"
|
@@ -428,7 +428,7 @@ msgid ""
|
|
428 |
msgstr ""
|
429 |
|
430 |
#: admin/core/core-custom-code.php:605 admin/core/core-custom-code.php:983
|
431 |
-
#: admin/core/core.php:
|
432 |
msgid "Click the Custom Code Question Mark help button for more help info."
|
433 |
msgstr ""
|
434 |
|
@@ -570,7 +570,7 @@ msgstr ""
|
|
570 |
|
571 |
#: admin/core/core-export-import.php:110 admin/login/lsm-export.php:49
|
572 |
#: admin/wizard/wizard-backup.php:247 admin/wizard/wizard-backup.php:289
|
573 |
-
#: admin/wizard/wizard.php:
|
574 |
msgid ""
|
575 |
"If you see a 403 error and/or are unable to download the zip file then click "
|
576 |
"here: "
|
@@ -578,8 +578,8 @@ msgstr ""
|
|
578 |
|
579 |
#: admin/core/core-export-import.php:110 admin/login/lsm-export.php:49
|
580 |
#: admin/wizard/wizard-backup.php:247 admin/wizard/wizard-backup.php:289
|
581 |
-
#: admin/wizard/wizard.php:
|
582 |
-
#: admin/wizard/wizard.php:
|
583 |
#: includes/hud-autofix-whitelist.php:861
|
584 |
msgid "Setup Wizard Options"
|
585 |
msgstr ""
|
@@ -591,15 +591,15 @@ msgid ""
|
|
591 |
msgstr ""
|
592 |
|
593 |
#: admin/core/core-export-import.php:110 admin/login/lsm-export.php:49
|
594 |
-
#: admin/wizard/wizard.php:
|
595 |
msgid "Download Zip Export"
|
596 |
msgstr ""
|
597 |
|
598 |
-
#: admin/core/core-export-import.php:139 admin/wizard/wizard.php:
|
599 |
msgid "Zip File Upload Successful."
|
600 |
msgstr ""
|
601 |
|
602 |
-
#: admin/core/core-export-import.php:150 admin/wizard/wizard.php:
|
603 |
msgid "Zip File Exraction Successful. Method: ZipArchive class."
|
604 |
msgstr ""
|
605 |
|
@@ -629,19 +629,19 @@ msgstr ""
|
|
629 |
msgid "3. Click the wp-admin Folder BulletProof Mode Activate button."
|
630 |
msgstr ""
|
631 |
|
632 |
-
#: admin/core/core-export-import.php:164 admin/wizard/wizard.php:
|
633 |
msgid "ERROR: Zip File Extraction Failed. Method: ZipArchive class."
|
634 |
msgstr ""
|
635 |
|
636 |
-
#: admin/core/core-export-import.php:179 admin/wizard/wizard.php:
|
637 |
msgid "Zip File Extraction Successful. Method: PclZip."
|
638 |
msgstr ""
|
639 |
|
640 |
-
#: admin/core/core-export-import.php:193 admin/wizard/wizard.php:
|
641 |
msgid "ERROR: Zip File Extraction Failed. Method: PclZip."
|
642 |
msgstr ""
|
643 |
|
644 |
-
#: admin/core/core-export-import.php:201 admin/wizard/wizard.php:
|
645 |
msgid "ERROR: Zip File Upload Failed."
|
646 |
msgstr ""
|
647 |
|
@@ -672,7 +672,7 @@ msgid "Your Root and wp-admin Custom Code has been deleted successfully."
|
|
672 |
msgstr ""
|
673 |
|
674 |
#: admin/core/core-forms.php:18 admin/core/core-forms.php:104
|
675 |
-
#: admin/core/core.php:
|
676 |
msgid "htaccess Files Disabled: wp-admin htaccess file writing is disabled. "
|
677 |
msgstr ""
|
678 |
|
@@ -682,12 +682,12 @@ msgstr ""
|
|
682 |
#: admin/core/core-forms.php:375 admin/core/core-forms.php:441
|
683 |
#: admin/core/core-htaccess-code.php:463 admin/core/core-htaccess-code.php:547
|
684 |
#: admin/core/core-htaccess-code.php:616 admin/core/core-htaccess-code.php:700
|
685 |
-
#: admin/core/core.php:
|
686 |
-
#: admin/core/core.php:
|
687 |
-
#: admin/maintenance/maintenance.php:
|
688 |
-
#: admin/maintenance/maintenance.php:
|
689 |
-
#: admin/maintenance/maintenance.php:
|
690 |
-
#: admin/maintenance/maintenance.php:
|
691 |
msgid "Click this link for help information: "
|
692 |
msgstr ""
|
693 |
|
@@ -697,13 +697,13 @@ msgstr ""
|
|
697 |
#: admin/core/core-forms.php:375 admin/core/core-forms.php:441
|
698 |
#: admin/core/core-htaccess-code.php:463 admin/core/core-htaccess-code.php:547
|
699 |
#: admin/core/core-htaccess-code.php:616 admin/core/core-htaccess-code.php:700
|
700 |
-
#: admin/core/core.php:
|
701 |
-
#: admin/core/core.php:
|
702 |
-
#: admin/maintenance/maintenance.php:
|
703 |
-
#: admin/maintenance/maintenance.php:
|
704 |
-
#: admin/maintenance/maintenance.php:
|
705 |
-
#: admin/maintenance/maintenance.php:
|
706 |
-
#: admin/wizard/wizard.php:
|
707 |
msgid "htaccess Files Disabled Forum Topic"
|
708 |
msgstr ""
|
709 |
|
@@ -998,7 +998,7 @@ msgid ""
|
|
998 |
"Question Mark help file for BPS troubleshooting steps."
|
999 |
msgstr ""
|
1000 |
|
1001 |
-
#: admin/core/core-help-text.php:15 admin/wizard/wizard.php:
|
1002 |
msgid "Notes: "
|
1003 |
msgstr ""
|
1004 |
|
@@ -1065,7 +1065,7 @@ msgid ""
|
|
1065 |
"Send Email Alerts."
|
1066 |
msgstr ""
|
1067 |
|
1068 |
-
#: admin/core/core-help-text.php:18 admin/core/core.php:
|
1069 |
msgid "HPF Cron Check Frequency:"
|
1070 |
msgstr ""
|
1071 |
|
@@ -1077,7 +1077,7 @@ msgid ""
|
|
1077 |
"Options button to save your settings."
|
1078 |
msgstr ""
|
1079 |
|
1080 |
-
#: admin/core/core-help-text.php:18 admin/core/core.php:
|
1081 |
msgid "HPF Cron On|Off:"
|
1082 |
msgstr ""
|
1083 |
|
@@ -1087,7 +1087,7 @@ msgid ""
|
|
1087 |
"HPF Cron Off. Click the Save HPF Cron Options button to save your settings."
|
1088 |
msgstr ""
|
1089 |
|
1090 |
-
#: admin/core/core-help-text.php:18 admin/core/core.php:
|
1091 |
msgid "Ignore Hidden Plugin Folders & Files:"
|
1092 |
msgstr ""
|
1093 |
|
@@ -1199,7 +1199,7 @@ msgid ""
|
|
1199 |
"will be updated/saved."
|
1200 |
msgstr ""
|
1201 |
|
1202 |
-
#: admin/core/core-help-text.php:30 admin/security-log/security-log.php:
|
1203 |
msgid "Important Notes: "
|
1204 |
msgstr ""
|
1205 |
|
@@ -1703,12 +1703,12 @@ msgid "Modify wp-admin Query String Exploit code here"
|
|
1703 |
msgstr ""
|
1704 |
|
1705 |
#: admin/core/core-htaccess-code.php:59 admin/core/core-htaccess-code.php:135
|
1706 |
-
#: admin/maintenance/maintenance.php:
|
1707 |
msgid "The file "
|
1708 |
msgstr ""
|
1709 |
|
1710 |
#: admin/core/core-htaccess-code.php:59 admin/core/core-htaccess-code.php:135
|
1711 |
-
#: admin/maintenance/maintenance.php:
|
1712 |
msgid " is not writable or does not exist."
|
1713 |
msgstr ""
|
1714 |
|
@@ -1736,17 +1736,17 @@ msgstr ""
|
|
1736 |
|
1737 |
#: admin/core/core-htaccess-code.php:463 admin/core/core-htaccess-code.php:547
|
1738 |
#: admin/core/core-htaccess-code.php:616 admin/core/core-htaccess-code.php:700
|
1739 |
-
#: admin/core/core.php:
|
1740 |
msgid "htaccess Files Disabled: Root htaccess file writing is disabled. "
|
1741 |
msgstr ""
|
1742 |
|
1743 |
#: admin/core/core-htaccess-code.php:485 admin/core/core-htaccess-code.php:638
|
1744 |
-
#: admin/core/core.php:
|
1745 |
msgid "Failed to copy your Custom default.htaccess file: "
|
1746 |
msgstr ""
|
1747 |
|
1748 |
#: admin/core/core-htaccess-code.php:485 admin/core/core-htaccess-code.php:638
|
1749 |
-
#: admin/core/core.php:
|
1750 |
msgid " to: "
|
1751 |
msgstr ""
|
1752 |
|
@@ -1801,7 +1801,7 @@ msgstr ""
|
|
1801 |
msgid "htaccess File Editor"
|
1802 |
msgstr ""
|
1803 |
|
1804 |
-
#: admin/core/core.php:195 admin/core/core.php:
|
1805 |
msgid "Custom Code"
|
1806 |
msgstr ""
|
1807 |
|
@@ -1821,247 +1821,247 @@ msgstr ""
|
|
1821 |
msgid "Help & FAQ"
|
1822 |
msgstr ""
|
1823 |
|
1824 |
-
#: admin/core/core.php:199 admin/core/core.php:
|
1825 |
-
#: admin/core/core.php:
|
1826 |
-
#: admin/core/core.php:
|
1827 |
-
#: admin/core/core.php:
|
1828 |
-
#: admin/db-backup-security/db-backup-security.php:
|
1829 |
-
#: admin/db-backup-security/db-backup-security.php:
|
1830 |
-
#: admin/email-log-settings/email-log-settings.php:
|
1831 |
-
#: admin/login/login.php:
|
1832 |
-
#: admin/login/login.php:
|
1833 |
-
#: admin/maintenance/maintenance.php:
|
1834 |
-
#: admin/mscan/mscan.php:
|
1835 |
-
#: admin/mscan/mscan.php:
|
1836 |
-
#: admin/system-info/system-info.php:
|
1837 |
-
#: admin/wizard/wizard.php:
|
1838 |
-
#: admin/wizard/wizard.php:
|
1839 |
msgid "BPS Pro Features"
|
1840 |
msgstr ""
|
1841 |
|
1842 |
-
#: admin/core/core.php:211 admin/core/core.php:214 admin/core/core.php:
|
1843 |
msgid "Root Folder BulletProof Mode (RBM)"
|
1844 |
msgstr ""
|
1845 |
|
1846 |
-
#: admin/core/core.php:
|
1847 |
-
#: admin/core/core.php:
|
1848 |
-
#: admin/core/core.php:
|
1849 |
-
#: admin/db-backup-security/db-backup-security.php:
|
1850 |
-
#: admin/db-backup-security/db-backup-security.php:
|
1851 |
-
#: admin/db-backup-security/db-backup-security.php:
|
1852 |
-
#: admin/email-log-settings/email-log-settings.php:
|
1853 |
-
#: admin/login/login.php:
|
1854 |
-
#: admin/login/login.php:
|
1855 |
-
#: admin/maintenance/maintenance.php:
|
1856 |
#: admin/mscan/mscan-help-text.php:78 admin/mscan/mscan-help-text.php:85
|
1857 |
-
#: admin/mscan/mscan.php:
|
1858 |
-
#: admin/mscan/mscan.php:
|
1859 |
-
#: admin/security-log/security-log.php:
|
1860 |
-
#: admin/theme-skin/theme-skin.php:
|
1861 |
-
#: admin/wizard/wizard.php:
|
1862 |
msgid ""
|
1863 |
"This Question Mark Help window is draggable (top) and resizable (bottom "
|
1864 |
"right corner)"
|
1865 |
msgstr ""
|
1866 |
|
1867 |
-
#: admin/core/core.php:
|
1868 |
-
#: admin/core/core.php:
|
1869 |
-
#: admin/core/core.php:
|
1870 |
-
#: admin/core/core.php:
|
1871 |
-
#: admin/db-backup-security/db-backup-security.php:
|
1872 |
-
#: admin/db-backup-security/db-backup-security.php:
|
1873 |
-
#: admin/email-log-settings/email-log-settings.php:
|
1874 |
-
#: admin/login/login.php:
|
1875 |
-
#: admin/login/login.php:
|
1876 |
-
#: admin/maintenance/maintenance.php:
|
1877 |
-
#: admin/mscan/mscan.php:
|
1878 |
-
#: admin/mscan/mscan.php:
|
1879 |
-
#: admin/system-info/system-info.php:
|
1880 |
-
#: admin/wizard/wizard.php:
|
1881 |
-
#: admin/wizard/wizard.php:
|
1882 |
msgid ""
|
1883 |
"Want even more security protection for the ridiculously cheap one-time price "
|
1884 |
"of $69.95"
|
1885 |
msgstr ""
|
1886 |
|
1887 |
-
#: admin/core/core.php:
|
1888 |
-
#: admin/core/core.php:
|
1889 |
-
#: admin/core/core.php:
|
1890 |
-
#: admin/core/core.php:
|
1891 |
-
#: admin/db-backup-security/db-backup-security.php:
|
1892 |
-
#: admin/db-backup-security/db-backup-security.php:
|
1893 |
-
#: admin/email-log-settings/email-log-settings.php:
|
1894 |
-
#: admin/login/login.php:
|
1895 |
-
#: admin/login/login.php:
|
1896 |
-
#: admin/maintenance/maintenance.php:
|
1897 |
-
#: admin/mscan/mscan.php:
|
1898 |
-
#: admin/mscan/mscan.php:
|
1899 |
-
#: admin/system-info/system-info.php:
|
1900 |
-
#: admin/wizard/wizard.php:
|
1901 |
-
#: admin/wizard/wizard.php:
|
1902 |
msgid ""
|
1903 |
"BPS Pro comes with free unlimited installations, upgrades & support for "
|
1904 |
"life. No yearly subscriptions or additional costs."
|
1905 |
msgstr ""
|
1906 |
|
1907 |
-
#: admin/core/core.php:
|
1908 |
-
#: admin/core/core.php:
|
1909 |
-
#: admin/core/core.php:
|
1910 |
-
#: admin/db-backup-security/db-backup-security.php:
|
1911 |
-
#: admin/db-backup-security/db-backup-security.php:
|
1912 |
-
#: admin/db-backup-security/db-backup-security.php:
|
1913 |
-
#: admin/email-log-settings/email-log-settings.php:
|
1914 |
-
#: admin/login/login.php:
|
1915 |
-
#: admin/login/login.php:
|
1916 |
-
#: admin/maintenance/maintenance.php:
|
1917 |
-
#: admin/mscan/mscan.php:
|
1918 |
-
#: admin/mscan/mscan.php:
|
1919 |
-
#: admin/system-info/system-info.php:
|
1920 |
-
#: admin/wizard/wizard.php:
|
1921 |
-
#: admin/wizard/wizard.php:
|
1922 |
msgid ""
|
1923 |
"BBS Pro has an amazing track record. BPS Pro is installed on 60,000+ "
|
1924 |
"websites. Not a single one of those websites has been hacked in 10+ years."
|
1925 |
msgstr ""
|
1926 |
|
1927 |
-
#: admin/core/core.php:
|
1928 |
-
#: admin/core/core.php:
|
1929 |
-
#: admin/core/core.php:
|
1930 |
-
#: admin/db-backup-security/db-backup-security.php:
|
1931 |
-
#: admin/db-backup-security/db-backup-security.php:
|
1932 |
-
#: admin/db-backup-security/db-backup-security.php:
|
1933 |
-
#: admin/email-log-settings/email-log-settings.php:
|
1934 |
-
#: admin/login/login.php:
|
1935 |
-
#: admin/login/login.php:
|
1936 |
-
#: admin/maintenance/maintenance.php:
|
1937 |
-
#: admin/mscan/mscan.php:
|
1938 |
-
#: admin/mscan/mscan.php:
|
1939 |
-
#: admin/system-info/system-info.php:
|
1940 |
-
#: admin/wizard/wizard.php:
|
1941 |
-
#: admin/wizard/wizard.php:
|
1942 |
msgid "Get BPS Pro"
|
1943 |
msgstr ""
|
1944 |
|
1945 |
-
#: admin/core/core.php:
|
1946 |
-
#: admin/db-backup-security/db-backup-security.php:
|
1947 |
-
#: admin/email-log-settings/email-log-settings.php:
|
1948 |
-
#: admin/login/login.php:
|
1949 |
-
#: admin/mscan/mscan.php:
|
1950 |
msgid "Forum Help Links: "
|
1951 |
msgstr ""
|
1952 |
|
1953 |
-
#: admin/core/core.php:
|
1954 |
msgid "Setup Wizard & Other Video Tutorials"
|
1955 |
msgstr ""
|
1956 |
|
1957 |
-
#: admin/core/core.php:
|
1958 |
-
#: admin/email-log-settings/email-log-settings.php:
|
1959 |
-
#: admin/security-log/security-log.php:
|
1960 |
msgid "BPS Troubleshooting Steps"
|
1961 |
msgstr ""
|
1962 |
|
1963 |
-
#: admin/core/core.php:
|
1964 |
-
#: admin/core/core.php:
|
1965 |
-
#: admin/core/core.php:
|
1966 |
msgid "RBM Status: "
|
1967 |
msgstr ""
|
1968 |
|
1969 |
-
#: admin/core/core.php:
|
1970 |
-
#: admin/core/core.php:
|
1971 |
-
#: admin/core/core.php:
|
1972 |
msgid "Disabled"
|
1973 |
msgstr ""
|
1974 |
|
1975 |
-
#: admin/core/core.php:
|
1976 |
msgid "Root htaccess File Does Not Exist"
|
1977 |
msgstr ""
|
1978 |
|
1979 |
-
#: admin/core/core.php:
|
1980 |
-
#: admin/core/core.php:
|
1981 |
-
#: admin/core/core.php:
|
1982 |
-
#: admin/system-info/system-info.php:
|
1983 |
msgid "Activated"
|
1984 |
msgstr ""
|
1985 |
|
1986 |
-
#: admin/core/core.php:
|
1987 |
-
#: admin/core/core.php:
|
1988 |
-
#: admin/core/core.php:
|
1989 |
-
#: admin/system-info/system-info.php:
|
1990 |
msgid "Deactivated"
|
1991 |
msgstr ""
|
1992 |
|
1993 |
-
#: admin/core/core.php:
|
1994 |
msgid "Click OK to Activate Root Folder BulletProof Mode or click Cancel."
|
1995 |
msgstr ""
|
1996 |
|
1997 |
-
#: admin/core/core.php:
|
1998 |
msgid "Click OK to Deactivate Root Folder BulletProof Mode or click Cancel."
|
1999 |
msgstr ""
|
2000 |
|
2001 |
-
#: admin/core/core.php:
|
2002 |
msgid "wp-admin Folder BulletProof Mode (WBM)"
|
2003 |
msgstr ""
|
2004 |
|
2005 |
-
#: admin/core/core.php:
|
2006 |
-
#: admin/core/core.php:
|
2007 |
msgid "WBM Status: "
|
2008 |
msgstr ""
|
2009 |
|
2010 |
-
#: admin/core/core.php:
|
2011 |
msgid "Click OK to Activate wp-admin Folder BulletProof Mode or click Cancel."
|
2012 |
msgstr ""
|
2013 |
|
2014 |
-
#: admin/core/core.php:
|
2015 |
msgid ""
|
2016 |
"Click OK to Deactivate wp-admin Folder BulletProof Mode or click Cancel."
|
2017 |
msgstr ""
|
2018 |
|
2019 |
-
#: admin/core/core.php:
|
2020 |
msgid "Hidden Plugin Folders|Files Cron (HPF)"
|
2021 |
msgstr ""
|
2022 |
|
2023 |
-
#: admin/core/core.php:
|
2024 |
-
#: admin/core/core.php:
|
2025 |
msgid "HPF Status: "
|
2026 |
msgstr ""
|
2027 |
|
2028 |
-
#: admin/core/core.php:
|
2029 |
msgid "HPF Cron On"
|
2030 |
msgstr ""
|
2031 |
|
2032 |
-
#: admin/core/core.php:
|
2033 |
msgid "HPF Cron Off"
|
2034 |
msgstr ""
|
2035 |
|
2036 |
-
#: admin/core/core.php:
|
2037 |
msgid "Run Check Every 1 Minute"
|
2038 |
msgstr ""
|
2039 |
|
2040 |
-
#: admin/core/core.php:
|
2041 |
msgid "Run Check Every 5 Minutes"
|
2042 |
msgstr ""
|
2043 |
|
2044 |
-
#: admin/core/core.php:
|
2045 |
msgid "Run Check Every 10 Minutes"
|
2046 |
msgstr ""
|
2047 |
|
2048 |
-
#: admin/core/core.php:
|
2049 |
msgid "Run Check Every 15 Minutes"
|
2050 |
msgstr ""
|
2051 |
|
2052 |
-
#: admin/core/core.php:
|
2053 |
msgid "Run Check Every 30 Minutes"
|
2054 |
msgstr ""
|
2055 |
|
2056 |
-
#: admin/core/core.php:
|
2057 |
msgid "Run Check Every 60 Minutes"
|
2058 |
msgstr ""
|
2059 |
|
2060 |
-
#: admin/core/core.php:
|
2061 |
msgid "Run Check Once Daily"
|
2062 |
msgstr ""
|
2063 |
|
2064 |
-
#: admin/core/core.php:
|
2065 |
msgid ""
|
2066 |
"The default Cron Frequency is: Run Check Every 15 Minutes. This is a "
|
2067 |
"lightweight check that uses an insignificant amount of resources/memory so 4 "
|
@@ -2073,302 +2073,302 @@ msgid ""
|
|
2073 |
"OK to proceed or click Cancel"
|
2074 |
msgstr ""
|
2075 |
|
2076 |
-
#: admin/core/core.php:
|
2077 |
msgid "Add Ignore rules using plugin folder names or file names."
|
2078 |
msgstr ""
|
2079 |
|
2080 |
-
#: admin/core/core.php:
|
2081 |
msgid "Use a comma and a space between folder and/or file names."
|
2082 |
msgstr ""
|
2083 |
|
2084 |
-
#: admin/core/core.php:
|
2085 |
msgid "Example: plugin-folder-name, example-file-name.php"
|
2086 |
msgstr ""
|
2087 |
|
2088 |
-
#: admin/core/core.php:
|
2089 |
msgid ""
|
2090 |
"This option is for adding ignore rules for Hidden or Empty Plugin Folders "
|
2091 |
"Detected by BPS or Non-standard WP files detected by BPS in your /plugins/ "
|
2092 |
"folder."
|
2093 |
msgstr ""
|
2094 |
|
2095 |
-
#: admin/core/core.php:
|
2096 |
msgid ""
|
2097 |
"This is an independent option setting that does not require clicking any "
|
2098 |
"other buttons."
|
2099 |
msgstr ""
|
2100 |
|
2101 |
-
#: admin/core/core.php:
|
2102 |
-
#: admin/security-log/security-log.php:
|
2103 |
-
#: admin/security-log/security-log.php:
|
2104 |
-
#: admin/security-log/security-log.php:
|
2105 |
-
#: admin/system-info/system-info.php:
|
2106 |
msgid "Click OK to proceed or click Cancel."
|
2107 |
msgstr ""
|
2108 |
|
2109 |
-
#: admin/core/core.php:
|
2110 |
msgid "Master htaccess Folder BulletProof Mode (MBM)"
|
2111 |
msgstr ""
|
2112 |
|
2113 |
-
#: admin/core/core.php:
|
2114 |
msgid "MBM BulletProof Modes"
|
2115 |
msgstr ""
|
2116 |
|
2117 |
-
#: admin/core/core.php:
|
2118 |
-
#: admin/core/core.php:
|
2119 |
msgid "MBM Status: "
|
2120 |
msgstr ""
|
2121 |
|
2122 |
-
#: admin/core/core.php:
|
2123 |
msgid "Click OK to Activate MBM BulletProof Mode or click Cancel."
|
2124 |
msgstr ""
|
2125 |
|
2126 |
-
#: admin/core/core.php:
|
2127 |
msgid "Click OK to Deactivate MBM BulletProof Mode or click Cancel."
|
2128 |
msgstr ""
|
2129 |
|
2130 |
-
#: admin/core/core.php:
|
2131 |
msgid "BPS Backup Folder BulletProof Mode (BBM)"
|
2132 |
msgstr ""
|
2133 |
|
2134 |
-
#: admin/core/core.php:
|
2135 |
msgid "BBM BulletProof Modes"
|
2136 |
msgstr ""
|
2137 |
|
2138 |
-
#: admin/core/core.php:
|
2139 |
-
#: admin/core/core.php:
|
2140 |
msgid "BBM Status: "
|
2141 |
msgstr ""
|
2142 |
|
2143 |
-
#: admin/core/core.php:
|
2144 |
msgid "Click OK to Activate BBM BulletProof Mode or click Cancel."
|
2145 |
msgstr ""
|
2146 |
|
2147 |
-
#: admin/core/core.php:
|
2148 |
msgid ""
|
2149 |
"Caution: BPS Backup Folder BulletProof Mode (BBM) should only be deactivated "
|
2150 |
"for testing or troubleshooting. Be sure to activate BBM BulletProof Mode "
|
2151 |
"after you are done testing or troubleshooting."
|
2152 |
msgstr ""
|
2153 |
|
2154 |
-
#: admin/core/core.php:
|
2155 |
msgid "Click OK to Deactivate BBM BulletProof Mode or click Cancel."
|
2156 |
msgstr ""
|
2157 |
|
2158 |
-
#: admin/core/core.php:
|
2159 |
msgid "Backup & Restore BPS htaccess Files"
|
2160 |
msgstr ""
|
2161 |
|
2162 |
-
#: admin/core/core.php:
|
2163 |
msgid "Click OK to Backup BPS htaccess files or click Cancel."
|
2164 |
msgstr ""
|
2165 |
|
2166 |
-
#: admin/core/core.php:
|
2167 |
msgid "Click OK to Restore BPS htaccess files or click Cancel."
|
2168 |
msgstr ""
|
2169 |
|
2170 |
-
#: admin/core/core.php:
|
2171 |
msgid "htaccess File Editing"
|
2172 |
msgstr ""
|
2173 |
|
2174 |
-
#: admin/core/core.php:
|
2175 |
msgid "htaccess Files Disabled: secure.htaccess Master file is disabled."
|
2176 |
msgstr ""
|
2177 |
|
2178 |
-
#: admin/core/core.php:
|
2179 |
msgid "ERROR: A secure.htaccess Master file was NOT found."
|
2180 |
msgstr ""
|
2181 |
|
2182 |
-
#: admin/core/core.php:
|
2183 |
msgid ""
|
2184 |
"File Open and Write test successful! The secure.htaccess Master file is "
|
2185 |
"writable."
|
2186 |
msgstr ""
|
2187 |
|
2188 |
-
#: admin/core/core.php:
|
2189 |
-
#: admin/core/core.php:
|
2190 |
msgid "Cannot write to file: "
|
2191 |
msgstr ""
|
2192 |
|
2193 |
-
#: admin/core/core.php:
|
2194 |
msgid ""
|
2195 |
"htaccess Files Disabled: secure.htaccess Master file writing is disabled. "
|
2196 |
msgstr ""
|
2197 |
|
2198 |
-
#: admin/core/core.php:
|
2199 |
msgid "Error: Unable to write to the secure.htaccess Master file."
|
2200 |
msgstr ""
|
2201 |
|
2202 |
-
#: admin/core/core.php:
|
2203 |
msgid "The secure.htaccess Master file has been updated."
|
2204 |
msgstr ""
|
2205 |
|
2206 |
-
#: admin/core/core.php:
|
2207 |
msgid "htaccess Files Disabled: default.htaccess Master file is disabled."
|
2208 |
msgstr ""
|
2209 |
|
2210 |
-
#: admin/core/core.php:
|
2211 |
msgid "ERROR: A default.htaccess Master file was NOT found."
|
2212 |
msgstr ""
|
2213 |
|
2214 |
-
#: admin/core/core.php:
|
2215 |
msgid ""
|
2216 |
"File Open and Write test successful! The default.htaccess Master file is "
|
2217 |
"writable."
|
2218 |
msgstr ""
|
2219 |
|
2220 |
-
#: admin/core/core.php:
|
2221 |
msgid ""
|
2222 |
"htaccess Files Disabled: default.htaccess Master file writing is disabled. "
|
2223 |
msgstr ""
|
2224 |
|
2225 |
-
#: admin/core/core.php:
|
2226 |
msgid "Error: Unable to write to the default.htaccess Master file."
|
2227 |
msgstr ""
|
2228 |
|
2229 |
-
#: admin/core/core.php:
|
2230 |
msgid "The default.htaccess Master file has been updated."
|
2231 |
msgstr ""
|
2232 |
|
2233 |
-
#: admin/core/core.php:
|
2234 |
msgid ""
|
2235 |
" Check that the /bps-backup/ and /master-backups/ folders exist and the "
|
2236 |
"folder permissions or Ownership for these folders."
|
2237 |
msgstr ""
|
2238 |
|
2239 |
-
#: admin/core/core.php:
|
2240 |
msgid ""
|
2241 |
"Your Custom default.htaccess Master file has been successfully saved to: "
|
2242 |
msgstr ""
|
2243 |
|
2244 |
-
#: admin/core/core.php:
|
2245 |
msgid "wpadmin-secure.htaccess file writing is disabled."
|
2246 |
msgstr ""
|
2247 |
|
2248 |
-
#: admin/core/core.php:
|
2249 |
msgid ""
|
2250 |
"htaccess Files Disabled: wpadmin-secure.htaccess Master file is disabled."
|
2251 |
msgstr ""
|
2252 |
|
2253 |
-
#: admin/core/core.php:
|
2254 |
msgid "ERROR: A wpadmin-secure.htaccess Master file was NOT found."
|
2255 |
msgstr ""
|
2256 |
|
2257 |
-
#: admin/core/core.php:
|
2258 |
msgid ""
|
2259 |
"File Open and Write test successful! The wpadmin-secure.htaccess Master file "
|
2260 |
"is writable."
|
2261 |
msgstr ""
|
2262 |
|
2263 |
-
#: admin/core/core.php:
|
2264 |
msgid ""
|
2265 |
"htaccess Files Disabled: wpadmin-secure.htaccess Master file writing is "
|
2266 |
"disabled. "
|
2267 |
msgstr ""
|
2268 |
|
2269 |
-
#: admin/core/core.php:
|
2270 |
msgid "Error: Unable to write to the wpadmin-secure.htaccess Master file."
|
2271 |
msgstr ""
|
2272 |
|
2273 |
-
#: admin/core/core.php:
|
2274 |
msgid "The wpadmin-secure.htaccess Master file has been updated."
|
2275 |
msgstr ""
|
2276 |
|
2277 |
-
#: admin/core/core.php:
|
2278 |
msgid "htaccess Files Disabled: Root htaccess file does not exist."
|
2279 |
msgstr ""
|
2280 |
|
2281 |
-
#: admin/core/core.php:
|
2282 |
msgid "ERROR: An htaccess file was NOT found in your root folder"
|
2283 |
msgstr ""
|
2284 |
|
2285 |
-
#: admin/core/core.php:
|
2286 |
msgid ""
|
2287 |
"File Open and Write test successful! Your root htaccess file is writable."
|
2288 |
msgstr ""
|
2289 |
|
2290 |
-
#: admin/core/core.php:
|
2291 |
msgid "Your root htaccess file is Locked with Read Only Permissions."
|
2292 |
msgstr ""
|
2293 |
|
2294 |
-
#: admin/core/core.php:
|
2295 |
msgid ""
|
2296 |
"Use the Lock and Unlock buttons below to Lock or Unlock your root htaccess "
|
2297 |
"file for editing."
|
2298 |
msgstr ""
|
2299 |
|
2300 |
-
#: admin/core/core.php:
|
2301 |
msgid ""
|
2302 |
"Error: Unable to write to the Root htaccess file. If your Root htaccess file "
|
2303 |
"is locked you must unlock first."
|
2304 |
msgstr ""
|
2305 |
|
2306 |
-
#: admin/core/core.php:
|
2307 |
msgid "Your root htaccess file has been updated."
|
2308 |
msgstr ""
|
2309 |
|
2310 |
-
#: admin/core/core.php:
|
2311 |
msgid "wp-admin active htaccess file writing is disabled."
|
2312 |
msgstr ""
|
2313 |
|
2314 |
-
#: admin/core/core.php:
|
2315 |
msgid "htaccess Files Disabled: wp-admin folder htaccess file does not exist."
|
2316 |
msgstr ""
|
2317 |
|
2318 |
-
#: admin/core/core.php:
|
2319 |
msgid "ERROR: An htaccess file was NOT found in your wp-admin folder"
|
2320 |
msgstr ""
|
2321 |
|
2322 |
-
#: admin/core/core.php:
|
2323 |
msgid ""
|
2324 |
"File Open and Write test successful! Your wp-admin htaccess file is writable."
|
2325 |
msgstr ""
|
2326 |
|
2327 |
-
#: admin/core/core.php:
|
2328 |
msgid "Error: Unable to write to the wp-admin htaccess file."
|
2329 |
msgstr ""
|
2330 |
|
2331 |
-
#: admin/core/core.php:
|
2332 |
msgid "Your wp-admin htaccess file has been updated."
|
2333 |
msgstr ""
|
2334 |
|
2335 |
-
#: admin/core/core.php:
|
2336 |
msgid "Your Root htaccess file has been Locked."
|
2337 |
msgstr ""
|
2338 |
|
2339 |
-
#: admin/core/core.php:
|
2340 |
msgid "Unable to Lock your Root htaccess file."
|
2341 |
msgstr ""
|
2342 |
|
2343 |
-
#: admin/core/core.php:
|
2344 |
msgid "Your Root htaccess file has been Unlocked."
|
2345 |
msgstr ""
|
2346 |
|
2347 |
-
#: admin/core/core.php:
|
2348 |
msgid "Unable to Unlock your Root htaccess file."
|
2349 |
msgstr ""
|
2350 |
|
2351 |
-
#: admin/core/core.php:
|
2352 |
msgid "Click OK to Lock your Root htaccess file or click Cancel."
|
2353 |
msgstr ""
|
2354 |
|
2355 |
-
#: admin/core/core.php:
|
2356 |
msgid ""
|
2357 |
"Note: The File Open and Write Test window will still display the last status "
|
2358 |
"of the file as Unlocked. To see the current status refresh your browser."
|
2359 |
msgstr ""
|
2360 |
|
2361 |
-
#: admin/core/core.php:
|
2362 |
msgid "Click OK to Unlock your Root htaccess file or click Cancel."
|
2363 |
msgstr ""
|
2364 |
|
2365 |
-
#: admin/core/core.php:
|
2366 |
msgid ""
|
2367 |
"Note: The File Open and Write Test window will still display the last status "
|
2368 |
"of the file as Locked. To see the current status refresh your browser."
|
2369 |
msgstr ""
|
2370 |
|
2371 |
-
#: admin/core/core.php:
|
2372 |
msgid ""
|
2373 |
"Turning AutoLock On will allow BPS Pro to automatically lock your Root ."
|
2374 |
"htaccess file. For some folks this causes a problem because their Web Hosts "
|
@@ -2376,23 +2376,23 @@ msgid ""
|
|
2376 |
"BPS Pro to AutoLock the Root .htaccess file works fine."
|
2377 |
msgstr ""
|
2378 |
|
2379 |
-
#: admin/core/core.php:
|
2380 |
msgid "Click OK to Turn AutoLock On or click Cancel."
|
2381 |
msgstr ""
|
2382 |
|
2383 |
-
#: admin/core/core.php:
|
2384 |
-
#: admin/system-info/system-info.php:
|
2385 |
-
#: admin/system-info/system-info.php:
|
2386 |
-
#: admin/system-info/system-info.php:
|
2387 |
-
#: admin/system-info/system-info.php:
|
2388 |
-
#: admin/system-info/system-info.php:
|
2389 |
#: includes/functions.php:761 includes/functions.php:942
|
2390 |
#: includes/functions.php:989 includes/functions.php:1041
|
2391 |
#: includes/functions.php:1089
|
2392 |
msgid "On"
|
2393 |
msgstr ""
|
2394 |
|
2395 |
-
#: admin/core/core.php:
|
2396 |
msgid ""
|
2397 |
"Turning AutoLock Off will prevent BPS Pro from automatically locking your "
|
2398 |
"Root .htaccess file. For some folks this is necessary because their Web "
|
@@ -2400,52 +2400,52 @@ msgid ""
|
|
2400 |
"allowing BPS Pro to AutoLock the Root .htaccess file works fine."
|
2401 |
msgstr ""
|
2402 |
|
2403 |
-
#: admin/core/core.php:
|
2404 |
msgid "Click OK to Turn AutoLock Off or click Cancel."
|
2405 |
msgstr ""
|
2406 |
|
2407 |
-
#: admin/core/core.php:
|
2408 |
-
#: admin/system-info/system-info.php:
|
2409 |
-
#: admin/system-info/system-info.php:
|
2410 |
-
#: admin/system-info/system-info.php:
|
2411 |
-
#: admin/system-info/system-info.php:
|
2412 |
-
#: admin/system-info/system-info.php:
|
2413 |
#: includes/functions.php:947 includes/functions.php:994
|
2414 |
#: includes/functions.php:1047 includes/functions.php:1095
|
2415 |
#: includes/general-functions.php:285 includes/general-functions.php:300
|
2416 |
msgid "Off"
|
2417 |
msgstr ""
|
2418 |
|
2419 |
-
#: admin/core/core.php:
|
2420 |
msgid "secure.htaccess"
|
2421 |
msgstr ""
|
2422 |
|
2423 |
-
#: admin/core/core.php:
|
2424 |
msgid "default.htaccess"
|
2425 |
msgstr ""
|
2426 |
|
2427 |
-
#: admin/core/core.php:
|
2428 |
msgid "wpadmin-secure.htaccess"
|
2429 |
msgstr ""
|
2430 |
|
2431 |
-
#: admin/core/core.php:
|
2432 |
msgid "Root htaccess File"
|
2433 |
msgstr ""
|
2434 |
|
2435 |
-
#: admin/core/core.php:
|
2436 |
msgid "wp-admin htaccess File"
|
2437 |
msgstr ""
|
2438 |
|
2439 |
-
#: admin/core/core.php:
|
2440 |
-
#: admin/core/core.php:
|
2441 |
msgid ""
|
2442 |
"If you see an error or are unable to save your editing changes then click "
|
2443 |
"the Encrypt htaccess Code button first and then click the Update File "
|
2444 |
"button. Mouse over the question mark image to the right for help info."
|
2445 |
msgstr ""
|
2446 |
|
2447 |
-
#: admin/core/core.php:
|
2448 |
-
#: admin/core/core.php:
|
2449 |
msgid ""
|
2450 |
"If your web host currently has ModSecurity installed or installs ModSecurity "
|
2451 |
"at a later time then ModSecurity will prevent you from saving your htaccess "
|
@@ -2453,8 +2453,8 @@ msgid ""
|
|
2453 |
"button."
|
2454 |
msgstr ""
|
2455 |
|
2456 |
-
#: admin/core/core.php:
|
2457 |
-
#: admin/core/core.php:
|
2458 |
msgid ""
|
2459 |
"If you click the Encrypt htaccess Code button and then want to edit your "
|
2460 |
"code again click the Decrypt htaccess Code button. After you are done "
|
@@ -2462,21 +2462,21 @@ msgid ""
|
|
2462 |
"File button."
|
2463 |
msgstr ""
|
2464 |
|
2465 |
-
#: admin/core/core.php:
|
2466 |
-
#: admin/core/core.php:
|
2467 |
msgid ""
|
2468 |
"Click the htaccess File Editing Question Mark help button for more help info."
|
2469 |
msgstr ""
|
2470 |
|
2471 |
-
#: admin/core/core.php:
|
2472 |
msgid "YOUR ROOT HTACCESS FILE IS LOCKED."
|
2473 |
msgstr ""
|
2474 |
|
2475 |
-
#: admin/core/core.php:
|
2476 |
msgid "YOUR FILE EDITS|CHANGES CANNOT BE SAVED."
|
2477 |
msgstr ""
|
2478 |
|
2479 |
-
#: admin/core/core.php:
|
2480 |
msgid ""
|
2481 |
"Click Cancel, copy the file editing changes you made to save them and then "
|
2482 |
"click the Unlock .htaccess File button to unlock your Root .htaccess file. "
|
@@ -2485,30 +2485,30 @@ msgid ""
|
|
2485 |
"to save your file edits/changes."
|
2486 |
msgstr ""
|
2487 |
|
2488 |
-
#: admin/core/core.php:
|
2489 |
-
#: admin/wizard/wizard.php:
|
2490 |
msgid "Custom Code Video Tutorial"
|
2491 |
msgstr ""
|
2492 |
|
2493 |
-
#: admin/core/core.php:
|
2494 |
msgid "BulletProof Security Pro Forum"
|
2495 |
msgstr ""
|
2496 |
|
2497 |
-
#: admin/core/core.php:
|
2498 |
msgid "Brute Force Login Page Protection code"
|
2499 |
msgstr ""
|
2500 |
|
2501 |
-
#: admin/core/core.php:
|
2502 |
msgid ""
|
2503 |
"Clicking OK will Import all of your Root and wp-admin Custom Code from the "
|
2504 |
"cc-master.zip file on your computer."
|
2505 |
msgstr ""
|
2506 |
|
2507 |
-
#: admin/core/core.php:
|
2508 |
msgid "Click OK to Import Custom Code or click Cancel."
|
2509 |
msgstr ""
|
2510 |
|
2511 |
-
#: admin/core/core.php:
|
2512 |
msgid ""
|
2513 |
"Clicking OK will Export (copy) all of your Root and wp-admin Custom Code "
|
2514 |
"into the cc-master.zip file, which you can then download to your computer by "
|
@@ -2516,47 +2516,47 @@ msgid ""
|
|
2516 |
"success message."
|
2517 |
msgstr ""
|
2518 |
|
2519 |
-
#: admin/core/core.php:
|
2520 |
msgid "Click OK to Export Custom Code or click Cancel."
|
2521 |
msgstr ""
|
2522 |
|
2523 |
-
#: admin/core/core.php:
|
2524 |
msgid ""
|
2525 |
"Clicking OK will delete all of your Root and wp-admin Custom Code from all "
|
2526 |
"of the Custom Code text boxes."
|
2527 |
msgstr ""
|
2528 |
|
2529 |
-
#: admin/core/core.php:
|
2530 |
msgid "Click OK to Delete Custom Code or click Cancel."
|
2531 |
msgstr ""
|
2532 |
|
2533 |
-
#: admin/core/core.php:
|
2534 |
msgid "Save Personal Notes and htaccess Code Notes to your WordPress Database"
|
2535 |
msgstr ""
|
2536 |
|
2537 |
-
#: admin/core/core.php:
|
2538 |
msgid ""
|
2539 |
"Your My Notes Personal Notes and/or htaccess Code Notes saved successfully "
|
2540 |
"to your WordPress Database."
|
2541 |
msgstr ""
|
2542 |
|
2543 |
-
#: admin/core/core.php:
|
2544 |
msgid ""
|
2545 |
"If you are unable to save custom htaccess code and/or see an error message "
|
2546 |
"when trying to save custom htaccess code, "
|
2547 |
msgstr ""
|
2548 |
|
2549 |
-
#: admin/core/core.php:
|
2550 |
msgid ""
|
2551 |
"click the Encrypt My Notes button first and then click the Save My Notes "
|
2552 |
"button."
|
2553 |
msgstr ""
|
2554 |
|
2555 |
-
#: admin/core/core.php:
|
2556 |
msgid "Mouse over the question mark image to the right for help info."
|
2557 |
msgstr ""
|
2558 |
|
2559 |
-
#: admin/core/core.php:
|
2560 |
msgid ""
|
2561 |
"If your web host currently has ModSecurity installed or installs ModSecurity "
|
2562 |
"at a later time then ModSecurity will prevent you from saving your custom "
|
@@ -2564,7 +2564,7 @@ msgid ""
|
|
2564 |
"button."
|
2565 |
msgstr ""
|
2566 |
|
2567 |
-
#: admin/core/core.php:
|
2568 |
msgid ""
|
2569 |
"If you click the Encrypt My Notes button, but then want to add or edit "
|
2570 |
"additional custom code click the Decrypt My Notes button. After you are done "
|
@@ -2572,46 +2572,46 @@ msgid ""
|
|
2572 |
"clicking the Save My Notes button."
|
2573 |
msgstr ""
|
2574 |
|
2575 |
-
#: admin/core/core.php:
|
2576 |
-
#: admin/db-backup-security/db-backup-security.php:
|
2577 |
-
#: admin/mscan/mscan.php:
|
2578 |
msgid "Whats New in "
|
2579 |
msgstr ""
|
2580 |
|
2581 |
-
#: admin/core/core.php:
|
2582 |
msgid " and General Help Info & Tips"
|
2583 |
msgstr ""
|
2584 |
|
2585 |
-
#: admin/core/core.php:
|
2586 |
msgid "The BPS Changelog|Whats New page has been moved to the "
|
2587 |
msgstr ""
|
2588 |
|
2589 |
-
#: admin/core/core.php:
|
2590 |
msgid "General Help Info & Tips:"
|
2591 |
msgstr ""
|
2592 |
|
2593 |
-
#: admin/core/core.php:
|
2594 |
msgid "BPS Video Tutorials|Setup Wizard: "
|
2595 |
msgstr ""
|
2596 |
|
2597 |
-
#: admin/core/core.php:
|
2598 |
msgid "BPS Pro Video Tutorials"
|
2599 |
msgstr ""
|
2600 |
|
2601 |
-
#: admin/core/core.php:
|
2602 |
msgid ""
|
2603 |
"BPS Setup Wizard AutoFix automatically creates whitelist rules for 100+ "
|
2604 |
"known issues with plugins and themes: "
|
2605 |
msgstr ""
|
2606 |
|
2607 |
-
#: admin/core/core.php:
|
2608 |
msgid ""
|
2609 |
"All BPS plugin features can be turned Off/On individually to confirm, "
|
2610 |
"eliminate or isolate a problem or issue that may or may not be caused by "
|
2611 |
"BPS: "
|
2612 |
msgstr ""
|
2613 |
|
2614 |
-
#: admin/core/core.php:
|
2615 |
msgid ""
|
2616 |
"The BPS Security Log is a primary troubleshooting tool. If BPS is blocking "
|
2617 |
"something legitimate in another plugin or theme then a Security Log entry "
|
@@ -2620,48 +2620,48 @@ msgid ""
|
|
2620 |
"being blocked: "
|
2621 |
msgstr ""
|
2622 |
|
2623 |
-
#: admin/core/core.php:
|
2624 |
msgid "BPS Security Forum: "
|
2625 |
msgstr ""
|
2626 |
|
2627 |
-
#: admin/core/core.php:
|
2628 |
-
#: admin/login/login.php:
|
2629 |
-
#: admin/security-log/security-log.php:
|
2630 |
-
#: admin/system-info/system-info.php:
|
2631 |
msgid "Security Log Event Codes"
|
2632 |
msgstr ""
|
2633 |
|
2634 |
-
#: admin/core/core.php:
|
2635 |
-
#: admin/db-backup-security/db-backup-security.php:
|
2636 |
-
#: admin/email-log-settings/email-log-settings.php:
|
2637 |
-
#: admin/login/login.php:
|
2638 |
-
#: admin/mscan/mscan.php:
|
2639 |
-
#: admin/system-info/system-info.php:
|
2640 |
msgid "Forum: Search, Troubleshooting Steps & Post Questions For Assistance"
|
2641 |
msgstr ""
|
2642 |
|
2643 |
-
#: admin/core/core.php:
|
2644 |
msgid "BulletProof Security Pro Feature Highlights"
|
2645 |
msgstr ""
|
2646 |
|
2647 |
-
#: admin/core/core.php:
|
2648 |
msgid "The Ultimate Security Protection"
|
2649 |
msgstr ""
|
2650 |
|
2651 |
-
#: admin/core/core.php:
|
2652 |
msgid "BPS Pro One-Click Setup Wizard & Demo Video Tutorial"
|
2653 |
msgstr ""
|
2654 |
|
2655 |
-
#: admin/core/core.php:
|
2656 |
msgid "View All BPS Pro Features"
|
2657 |
msgstr ""
|
2658 |
|
2659 |
-
#: admin/core/core.php:
|
2660 |
msgid ""
|
2661 |
"The Complete Website Security Solution for Hacker and Spammer Protection"
|
2662 |
msgstr ""
|
2663 |
|
2664 |
-
#: admin/core/core.php:
|
2665 |
msgid ""
|
2666 |
"BulletProof Security Pro has an amazing track record. BPS Pro has been "
|
2667 |
"publicly available for 10+ years and is installed on over 60,000 websites "
|
@@ -2669,47 +2669,47 @@ msgid ""
|
|
2669 |
"hacked."
|
2670 |
msgstr ""
|
2671 |
|
2672 |
-
#: admin/core/core.php:
|
2673 |
msgid ""
|
2674 |
"Why pay 10 times or more for other premium WordPress Security Plugins with "
|
2675 |
"recurring yearly subscriptions when you can get the best WordPress Security "
|
2676 |
"Plugin for an extremely low one-time purchase price?"
|
2677 |
msgstr ""
|
2678 |
|
2679 |
-
#: admin/core/core.php:
|
2680 |
msgid "View Cost Comparison"
|
2681 |
msgstr ""
|
2682 |
|
2683 |
-
#: admin/core/core.php:
|
2684 |
msgid ""
|
2685 |
"30-Day Money-Back Guarantee: If you are dissatisfied with BulletProof "
|
2686 |
"Security Pro for any reason. We offer a no questions asked full refund."
|
2687 |
msgstr ""
|
2688 |
|
2689 |
-
#: admin/core/core.php:
|
2690 |
msgid "One-Click Setup Wizard Installation: "
|
2691 |
msgstr ""
|
2692 |
|
2693 |
-
#: admin/core/core.php:
|
2694 |
msgid ""
|
2695 |
"Fast, simple and complete BPS Pro installation and setup in less than 1 "
|
2696 |
"minute."
|
2697 |
msgstr ""
|
2698 |
|
2699 |
-
#: admin/core/core.php:
|
2700 |
msgid "One-Click Upgrade: "
|
2701 |
msgstr ""
|
2702 |
|
2703 |
-
#: admin/core/core.php:
|
2704 |
msgid "One-click plugin upgrade on the WordPress Plugins page."
|
2705 |
msgstr ""
|
2706 |
|
2707 |
-
#: admin/core/core.php:
|
2708 |
msgid ""
|
2709 |
"AutoRestore|Quarantine Intrusion Detection and Prevention System (ARQ IDPS): "
|
2710 |
msgstr ""
|
2711 |
|
2712 |
-
#: admin/core/core.php:
|
2713 |
msgid ""
|
2714 |
"ARQ IDPS is a real-time file scanner that automatically quarantines "
|
2715 |
"malicious hacker files and autorestores legitimate website files if they "
|
@@ -2723,11 +2723,11 @@ msgid ""
|
|
2723 |
"Plugin and Theme Automatic, Manual and Shiny installations and updates."
|
2724 |
msgstr ""
|
2725 |
|
2726 |
-
#: admin/core/core.php:
|
2727 |
msgid "MScan Malware Scanner: "
|
2728 |
msgstr ""
|
2729 |
|
2730 |
-
#: admin/core/core.php:
|
2731 |
msgid ""
|
2732 |
"MScan Scheduled Scans are available in BPS Pro only. The BPS Pro ARQ IDPS "
|
2733 |
"scanner is far superior to malware scanners including MScan, but both the "
|
@@ -2735,11 +2735,11 @@ msgid ""
|
|
2735 |
"website if someone would like to do that."
|
2736 |
msgstr ""
|
2737 |
|
2738 |
-
#: admin/core/core.php:
|
2739 |
msgid "Plugin Firewall|Plugin Firewall AutoPilot Mode: "
|
2740 |
msgstr ""
|
2741 |
|
2742 |
-
#: admin/core/core.php:
|
2743 |
msgid ""
|
2744 |
"The Plugin Firewall protects all of your Plugins (plugin folders and files) "
|
2745 |
"with an IP Address Firewall, which prevents/blocks/forbids Remote Access to "
|
@@ -2753,11 +2753,11 @@ msgid ""
|
|
2753 |
"firewall whitelist rules."
|
2754 |
msgstr ""
|
2755 |
|
2756 |
-
#: admin/core/core.php:
|
2757 |
msgid "JTC Anti-Spam|Anti-Hacker (JTC): "
|
2758 |
msgstr ""
|
2759 |
|
2760 |
-
#: admin/core/core.php:
|
2761 |
#, php-format
|
2762 |
msgid ""
|
2763 |
"Blocks 100% of all SpamBot and HackerBot Brute Force Login attacks (auto-"
|
@@ -2771,11 +2771,11 @@ msgid ""
|
|
2771 |
"includes a SpamBot Trap."
|
2772 |
msgstr ""
|
2773 |
|
2774 |
-
#: admin/core/core.php:
|
2775 |
msgid "Uploads Folder Anti-Exploit Guard (UAEG): "
|
2776 |
msgstr ""
|
2777 |
|
2778 |
-
#: admin/core/core.php:
|
2779 |
msgid ""
|
2780 |
"Protects the WordPress Uploads folder. ONLY safe image files with valid "
|
2781 |
"image file extensions such as jpg, gif, png, etc. can be accessed, opened or "
|
@@ -2785,11 +2785,11 @@ msgid ""
|
|
2785 |
"executed in the WordPress Uploads folder."
|
2786 |
msgstr ""
|
2787 |
|
2788 |
-
#: admin/core/core.php:
|
2789 |
msgid "DB Monitor Intrusion Detection System (IDS): "
|
2790 |
msgstr ""
|
2791 |
|
2792 |
-
#: admin/core/core.php:
|
2793 |
msgid ""
|
2794 |
"The DB Monitor is an automated Intrusion Detection System (IDS) that alerts "
|
2795 |
"you via email anytime a change/modification occurs in your WordPress "
|
@@ -2800,11 +2800,11 @@ msgid ""
|
|
2800 |
"help info."
|
2801 |
msgstr ""
|
2802 |
|
2803 |
-
#: admin/core/core.php:
|
2804 |
msgid "DB Diff Tool: "
|
2805 |
msgstr ""
|
2806 |
|
2807 |
-
#: admin/core/core.php:
|
2808 |
msgid ""
|
2809 |
"The DB Diff Tool compares old database tables from DB backups to current "
|
2810 |
"database tables and displays any differences in the data/content of those 2 "
|
@@ -2812,11 +2812,11 @@ msgid ""
|
|
2812 |
"not only just DB data."
|
2813 |
msgstr ""
|
2814 |
|
2815 |
-
#: admin/core/core.php:
|
2816 |
msgid "DB Status & Info: "
|
2817 |
msgstr ""
|
2818 |
|
2819 |
-
#: admin/core/core.php:
|
2820 |
msgid ""
|
2821 |
"General DB Info shows commonly checked DB status and info about your "
|
2822 |
"WordPress database at a glance. Extensive DB Info shows extensive DB status "
|
@@ -2825,11 +2825,11 @@ msgid ""
|
|
2825 |
"SHOW GLOBAL VARIABLES and SHOW SESSION VARIABLES."
|
2826 |
msgstr ""
|
2827 |
|
2828 |
-
#: admin/core/core.php:
|
2829 |
msgid "Display & Alert Options: "
|
2830 |
msgstr ""
|
2831 |
|
2832 |
-
#: admin/core/core.php:
|
2833 |
msgid ""
|
2834 |
"Centralized Display & Alert Options where you can manage and choose BPS Pro "
|
2835 |
"settings for Dashboard Alerts, Dashboard Status Display|Inpage Status "
|
@@ -2839,11 +2839,11 @@ msgid ""
|
|
2839 |
"settings to your particular preferences."
|
2840 |
msgstr ""
|
2841 |
|
2842 |
-
#: admin/core/core.php:
|
2843 |
msgid "Advanced Real-Time Alerting & Heads Up Dashboard Status Display: "
|
2844 |
msgstr ""
|
2845 |
|
2846 |
-
#: admin/core/core.php:
|
2847 |
msgid ""
|
2848 |
"BPS Pro checks and displays error, warning, notifications and alert messages "
|
2849 |
"in real time. You can choose how you want these messages displayed to you "
|
@@ -2851,23 +2851,11 @@ msgid ""
|
|
2851 |
"Dashboard, BPS Pro pages only, Turned off, Email Alerts, Logging..."
|
2852 |
msgstr ""
|
2853 |
|
2854 |
-
#: admin/core/core.php:
|
2855 |
-
msgid "Custom php.ini|ini_set Options: "
|
2856 |
-
msgstr ""
|
2857 |
-
|
2858 |
-
#: admin/core/core.php:2201
|
2859 |
-
msgid ""
|
2860 |
-
"Quickly create a custom php.ini file for your website or use ini_set Options "
|
2861 |
-
"to increase security and performance with just a few clicks. Additional P-"
|
2862 |
-
"Security Features: All-purpose File Manager, All-purpose File Editor, "
|
2863 |
-
"Protected PHP Error Log, PHP Error Alerts, Secure phpinfo Viewer..."
|
2864 |
-
msgstr ""
|
2865 |
-
|
2866 |
-
#: admin/core/core.php:2203
|
2867 |
msgid "Pro Tools: 16 mini-plugins: "
|
2868 |
msgstr ""
|
2869 |
|
2870 |
-
#: admin/core/core.php:
|
2871 |
msgid ""
|
2872 |
"Online Base64 Decoder, Offline Base64 Decode|Encode, Mcrypt ~ Decrypt|"
|
2873 |
"Encrypt, Crypt Encryption, Scheduled Crons (display and reschedule/reset "
|
@@ -2881,106 +2869,107 @@ msgid ""
|
|
2881 |
"cURL Scan (scan website Source Code for strings/text/code), Website Headers "
|
2882 |
"(check and display Headers using GET or HEAD Requests), WP Automatic Update "
|
2883 |
"(Turn WP Automatic Updates On or Off and other settings), Plugin Update "
|
2884 |
-
"Check (force new Plugin update check),
|
|
|
2885 |
"website or a remote website to see if the website is protected against or "
|
2886 |
"vulnerable to an XML-RPC exploit)."
|
2887 |
msgstr ""
|
2888 |
|
2889 |
-
#: admin/core/core.php:
|
2890 |
msgid "BPS Pro Version Release Dates"
|
2891 |
msgstr ""
|
2892 |
|
2893 |
-
#: admin/core/core.php:
|
2894 |
-
#: admin/core/core.php:
|
2895 |
-
#: admin/core/core.php:
|
2896 |
-
#: admin/core/core.php:
|
2897 |
-
#: admin/core/core.php:
|
2898 |
-
#: admin/core/core.php:
|
2899 |
-
#: admin/core/core.php:
|
2900 |
-
#: admin/core/core.php:
|
2901 |
-
#: admin/core/core.php:
|
2902 |
-
#: admin/core/core.php:
|
2903 |
-
#: admin/core/core.php:
|
2904 |
-
#: admin/core/core.php:
|
2905 |
-
#: admin/core/core.php:
|
2906 |
-
#: admin/core/core.php:
|
2907 |
-
#: admin/core/core.php:2286 admin/core/core.php:2287 admin/core/core.php:2288
|
2908 |
-
#: admin/core/core.php:2289 admin/core/core.php:2290 admin/core/core.php:2291
|
2909 |
#: admin/core/core.php:2292 admin/core/core.php:2293 admin/core/core.php:2294
|
2910 |
-
#: admin/core/core.php:2295 admin/core/core.php:2296 admin/core/core.php:
|
2911 |
-
#: admin/core/core.php:
|
2912 |
-
#: admin/core/core.php:
|
2913 |
-
#: admin/core/core.php:
|
2914 |
#: admin/core/core.php:2312 admin/core/core.php:2313 admin/core/core.php:2314
|
2915 |
-
#: admin/core/core.php:2315 admin/core/core.php:
|
2916 |
-
#: admin/core/core.php:
|
2917 |
-
#: admin/core/core.php:
|
2918 |
#: admin/core/core.php:2329 admin/core/core.php:2330 admin/core/core.php:2331
|
2919 |
-
#: admin/core/core.php:2332 admin/core/core.php:2333 admin/core/core.php:
|
2920 |
-
#: admin/core/core.php:
|
2921 |
-
#: admin/core/core.php:
|
2922 |
-
#: admin/core/core.php:
|
2923 |
-
#: admin/core/core.php:
|
2924 |
-
#: admin/core/core.php:
|
2925 |
-
#: admin/core/core.php:
|
2926 |
-
#: admin/core/core.php:2363
|
|
|
|
|
2927 |
#, php-format
|
2928 |
msgid ""
|
2929 |
"<a href=\"%2$s\" target=\"_blank\" title=\"Link Opens in New Browser Window"
|
2930 |
"\">Whats New in BPS Pro %1$s</a>"
|
2931 |
msgstr ""
|
2932 |
|
2933 |
-
#: admin/core/core.php:
|
2934 |
#, php-format
|
2935 |
msgid "10 Year Milestone: 8-1-2021 | %1$s"
|
2936 |
msgstr ""
|
2937 |
|
2938 |
-
#: admin/core/core.php:
|
2939 |
#, php-format
|
2940 |
msgid "9 Year Milestone: 8-1-2020 | %1$s"
|
2941 |
msgstr ""
|
2942 |
|
2943 |
-
#: admin/core/core.php:
|
2944 |
#, php-format
|
2945 |
msgid "8 Year Milestone: 8-1-2019 | %1$s"
|
2946 |
msgstr ""
|
2947 |
|
2948 |
-
#: admin/core/core.php:
|
2949 |
#, php-format
|
2950 |
msgid "7 Year Milestone: 8-1-2018 | %1$s"
|
2951 |
msgstr ""
|
2952 |
|
2953 |
-
#: admin/core/core.php:
|
2954 |
#, php-format
|
2955 |
msgid "6 Year Milestone: 8-1-2017 | %1$s"
|
2956 |
msgstr ""
|
2957 |
|
2958 |
-
#: admin/core/core.php:
|
2959 |
#, php-format
|
2960 |
msgid "5 Year Milestone: 8-1-2016 | %1$s"
|
2961 |
msgstr ""
|
2962 |
|
2963 |
-
#: admin/core/core.php:
|
2964 |
#, php-format
|
2965 |
msgid "4 Year Milestone: 8-1-2015 | %1$s"
|
2966 |
msgstr ""
|
2967 |
|
2968 |
-
#: admin/core/core.php:
|
2969 |
#, php-format
|
2970 |
msgid "3 Year Milestone: 8-1-2014 | %1$s"
|
2971 |
msgstr ""
|
2972 |
|
2973 |
-
#: admin/core/core.php:
|
2974 |
#, php-format
|
2975 |
msgid "2 Year Milestone: 8-1-2013 | %1$s"
|
2976 |
msgstr ""
|
2977 |
|
2978 |
-
#: admin/core/core.php:
|
2979 |
#, php-format
|
2980 |
msgid "1 Year Milestone: 8-1-2012 | %1$s"
|
2981 |
msgstr ""
|
2982 |
|
2983 |
-
#: admin/core/core.php:
|
2984 |
msgid "BPS Pro 1.0 - 4.0 | 1-1-2011 - 8-1-2011 | Private Use|Development"
|
2985 |
msgstr ""
|
2986 |
|
@@ -3054,7 +3043,7 @@ msgid ""
|
|
3054 |
msgstr ""
|
3055 |
|
3056 |
#: admin/db-backup-security/db-backup-help-text.php:9
|
3057 |
-
#: admin/login/lsm-help-text.php:10 admin/security-log/security-log.php:
|
3058 |
msgid "NOTE: "
|
3059 |
msgstr ""
|
3060 |
|
@@ -3272,7 +3261,7 @@ msgid ""
|
|
3272 |
msgstr ""
|
3273 |
|
3274 |
#: admin/db-backup-security/db-backup-help-text.php:9
|
3275 |
-
#: admin/db-backup-security/db-backup-security.php:
|
3276 |
msgid "Rename|Create|Reset Tool"
|
3277 |
msgstr ""
|
3278 |
|
@@ -3458,9 +3447,9 @@ msgid ""
|
|
3458 |
msgstr ""
|
3459 |
|
3460 |
#: admin/db-backup-security/db-backup-help-text.php:12
|
3461 |
-
#: admin/email-log-settings/email-log-settings.php:
|
3462 |
#: admin/login/lsm-help-text.php:10 admin/login/lsm-help-text.php:19
|
3463 |
-
#: admin/security-log/security-log.php:
|
3464 |
msgid "Note: "
|
3465 |
msgstr ""
|
3466 |
|
@@ -3507,7 +3496,7 @@ msgid "Displays the last time a DB Backup Log entry was logged."
|
|
3507 |
msgstr ""
|
3508 |
|
3509 |
#: admin/db-backup-security/db-backup-help-text.php:12
|
3510 |
-
#: admin/mscan/mscan-help-text.php:75 admin/security-log/security-log.php:
|
3511 |
msgid "Delete Log Button"
|
3512 |
msgstr ""
|
3513 |
|
@@ -3644,615 +3633,615 @@ msgid "DB Backup"
|
|
3644 |
msgstr ""
|
3645 |
|
3646 |
#: admin/db-backup-security/db-backup-security.php:267
|
3647 |
-
#: admin/db-backup-security/db-backup-security.php:
|
3648 |
-
#: admin/db-backup-security/db-backup-security.php:
|
3649 |
msgid "DB Backup Log"
|
3650 |
msgstr ""
|
3651 |
|
3652 |
#: admin/db-backup-security/db-backup-security.php:268
|
3653 |
-
#: admin/db-backup-security/db-backup-security.php:
|
3654 |
-
#: admin/db-backup-security/db-backup-security.php:
|
3655 |
msgid "DB Table Prefix Changer"
|
3656 |
msgstr ""
|
3657 |
|
3658 |
-
#: admin/db-backup-security/db-backup-security.php:
|
3659 |
msgid "DB Backup & Security Guide"
|
3660 |
msgstr ""
|
3661 |
|
3662 |
-
#: admin/db-backup-security/db-backup-security.php:
|
3663 |
msgid "Backup Jobs ~ Manual|Scheduled"
|
3664 |
msgstr ""
|
3665 |
|
3666 |
-
#: admin/db-backup-security/db-backup-security.php:
|
3667 |
msgid ""
|
3668 |
"Error: You did not select any DB Tables to backup. Backup Job was not "
|
3669 |
"created."
|
3670 |
msgstr ""
|
3671 |
|
3672 |
-
#: admin/db-backup-security/db-backup-security.php:
|
3673 |
msgid "Backup Job "
|
3674 |
msgstr ""
|
3675 |
|
3676 |
-
#: admin/db-backup-security/db-backup-security.php:
|
3677 |
msgid " Created Successfully."
|
3678 |
msgstr ""
|
3679 |
|
3680 |
-
#: admin/db-backup-security/db-backup-security.php:
|
3681 |
msgid "Backup Job Settings Logged successfully in the DB Backup Log"
|
3682 |
msgstr ""
|
3683 |
|
3684 |
-
#: admin/db-backup-security/db-backup-security.php:
|
3685 |
msgid "Run Job|Delete Job"
|
3686 |
msgstr ""
|
3687 |
|
3688 |
-
#: admin/db-backup-security/db-backup-security.php:
|
3689 |
-
#: admin/db-backup-security/db-backup-security.php:
|
3690 |
msgid "Backup Job: "
|
3691 |
msgstr ""
|
3692 |
|
3693 |
-
#: admin/db-backup-security/db-backup-security.php:
|
3694 |
-
#: admin/db-backup-security/db-backup-security.php:
|
3695 |
msgid " has been deleted successfully."
|
3696 |
msgstr ""
|
3697 |
|
3698 |
-
#: admin/db-backup-security/db-backup-security.php:
|
3699 |
msgid " has completed."
|
3700 |
msgstr ""
|
3701 |
|
3702 |
-
#: admin/db-backup-security/db-backup-security.php:
|
3703 |
msgid ""
|
3704 |
"Your DB Backup Log contains the Backup Job Completion Time, Total Memory "
|
3705 |
"Used and other information about this Backup."
|
3706 |
msgstr ""
|
3707 |
|
3708 |
-
#: admin/db-backup-security/db-backup-security.php:
|
3709 |
msgid "Description|Job Name"
|
3710 |
msgstr ""
|
3711 |
|
3712 |
-
#: admin/db-backup-security/db-backup-security.php:
|
3713 |
-
#: admin/db-backup-security/db-backup-security.php:
|
3714 |
-
#: admin/db-backup-security/db-backup-security.php:
|
3715 |
-
#: admin/db-backup-security/db-backup-security.php:
|
3716 |
-
#: admin/login/login.php:
|
3717 |
-
#: admin/login/login.php:
|
3718 |
-
#: admin/mscan/mscan.php:
|
3719 |
msgid "Delete"
|
3720 |
msgstr ""
|
3721 |
|
3722 |
-
#: admin/db-backup-security/db-backup-security.php:
|
3723 |
-
#: admin/db-backup-security/db-backup-security.php:
|
3724 |
msgid "Run"
|
3725 |
msgstr ""
|
3726 |
|
3727 |
-
#: admin/db-backup-security/db-backup-security.php:
|
3728 |
msgid "Job Type"
|
3729 |
msgstr ""
|
3730 |
|
3731 |
-
#: admin/db-backup-security/db-backup-security.php:
|
3732 |
msgid "Frequency"
|
3733 |
msgstr ""
|
3734 |
|
3735 |
-
#: admin/db-backup-security/db-backup-security.php:
|
3736 |
msgid "Last Backup"
|
3737 |
msgstr ""
|
3738 |
|
3739 |
-
#: admin/db-backup-security/db-backup-security.php:
|
3740 |
msgid "Next Backup"
|
3741 |
msgstr ""
|
3742 |
|
3743 |
-
#: admin/db-backup-security/db-backup-security.php:
|
3744 |
msgid "Email Backup"
|
3745 |
msgstr ""
|
3746 |
|
3747 |
-
#: admin/db-backup-security/db-backup-security.php:
|
3748 |
msgid "Job Created"
|
3749 |
msgstr ""
|
3750 |
|
3751 |
-
#: admin/db-backup-security/db-backup-security.php:
|
3752 |
msgid "No Backup Jobs have been created yet."
|
3753 |
msgstr ""
|
3754 |
|
3755 |
-
#: admin/db-backup-security/db-backup-security.php:
|
3756 |
msgid "Yes & Delete"
|
3757 |
msgstr ""
|
3758 |
|
3759 |
-
#: admin/db-backup-security/db-backup-security.php:
|
3760 |
msgid "Send Email Only"
|
3761 |
msgstr ""
|
3762 |
|
3763 |
-
#: admin/db-backup-security/db-backup-security.php:
|
3764 |
msgid "Backup Files ~ Download|Delete"
|
3765 |
msgstr ""
|
3766 |
|
3767 |
-
#: admin/db-backup-security/db-backup-security.php:
|
3768 |
msgid "Delete Files"
|
3769 |
msgstr ""
|
3770 |
|
3771 |
-
#: admin/db-backup-security/db-backup-security.php:
|
3772 |
msgid "Backup File: "
|
3773 |
msgstr ""
|
3774 |
|
3775 |
-
#: admin/db-backup-security/db-backup-security.php:
|
3776 |
msgid ""
|
3777 |
"Error: The DB Backup Folder Location option setting is either blank or "
|
3778 |
"incorrect."
|
3779 |
msgstr ""
|
3780 |
|
3781 |
-
#: admin/db-backup-security/db-backup-security.php:
|
3782 |
msgid ""
|
3783 |
"To fix this problem either click the Rename|Create|Reset button under the "
|
3784 |
"Create Backup Jobs accordion tab or run the BPS Setup Wizard again."
|
3785 |
msgstr ""
|
3786 |
|
3787 |
-
#: admin/db-backup-security/db-backup-security.php:
|
3788 |
msgid "Backup Filename"
|
3789 |
msgstr ""
|
3790 |
|
3791 |
-
#: admin/db-backup-security/db-backup-security.php:
|
3792 |
-
#: admin/db-backup-security/db-backup-security.php:
|
3793 |
msgid "Download"
|
3794 |
msgstr ""
|
3795 |
|
3796 |
-
#: admin/db-backup-security/db-backup-security.php:
|
3797 |
msgid "Backup Folder"
|
3798 |
msgstr ""
|
3799 |
|
3800 |
-
#: admin/db-backup-security/db-backup-security.php:
|
3801 |
msgid "Size"
|
3802 |
msgstr ""
|
3803 |
|
3804 |
-
#: admin/db-backup-security/db-backup-security.php:
|
3805 |
msgid "Date|Time"
|
3806 |
msgstr ""
|
3807 |
|
3808 |
-
#: admin/db-backup-security/db-backup-security.php:
|
3809 |
msgid "No Backup Jobs have been Run yet. No Files in Backup."
|
3810 |
msgstr ""
|
3811 |
|
3812 |
-
#: admin/db-backup-security/db-backup-security.php:
|
3813 |
msgid "Click OK to Delete Backup File(s) or click Cancel"
|
3814 |
msgstr ""
|
3815 |
|
3816 |
-
#: admin/db-backup-security/db-backup-security.php:
|
3817 |
msgid "Create Backup Jobs"
|
3818 |
msgstr ""
|
3819 |
|
3820 |
-
#: admin/db-backup-security/db-backup-security.php:
|
3821 |
msgid "Database Tables "
|
3822 |
msgstr ""
|
3823 |
|
3824 |
-
#: admin/db-backup-security/db-backup-security.php:
|
3825 |
msgid "Backup Job Settings|Independent Options"
|
3826 |
msgstr ""
|
3827 |
|
3828 |
-
#: admin/db-backup-security/db-backup-security.php:
|
3829 |
-
#: admin/mscan/mscan.php:
|
3830 |
msgid "All"
|
3831 |
msgstr ""
|
3832 |
|
3833 |
-
#: admin/db-backup-security/db-backup-security.php:
|
3834 |
-
#: admin/db-backup-security/db-backup-security.php:
|
3835 |
msgid "DB Table Name"
|
3836 |
msgstr ""
|
3837 |
|
3838 |
-
#: admin/db-backup-security/db-backup-security.php:
|
3839 |
msgid "Description|Backup Job Name:"
|
3840 |
msgstr ""
|
3841 |
|
3842 |
-
#: admin/db-backup-security/db-backup-security.php:
|
3843 |
msgid "DB Backup Folder Location:"
|
3844 |
msgstr ""
|
3845 |
|
3846 |
-
#: admin/db-backup-security/db-backup-security.php:
|
3847 |
msgid "Recommended: Use The Default Obfuscated & Secure BPS Backup Folder."
|
3848 |
msgstr ""
|
3849 |
|
3850 |
-
#: admin/db-backup-security/db-backup-security.php:
|
3851 |
msgid "DB Backup File Download Link|URL:"
|
3852 |
msgstr ""
|
3853 |
|
3854 |
-
#: admin/db-backup-security/db-backup-security.php:
|
3855 |
msgid ""
|
3856 |
"Note: If you see 404 errors when trying to download zip files or if you have "
|
3857 |
"changed the DB Backup Folder Location above, click the Question Mark help "
|
3858 |
"button."
|
3859 |
msgstr ""
|
3860 |
|
3861 |
-
#: admin/db-backup-security/db-backup-security.php:
|
3862 |
msgid "Backup Job Type: Manual or Scheduled"
|
3863 |
msgstr ""
|
3864 |
|
3865 |
-
#: admin/db-backup-security/db-backup-security.php:
|
3866 |
msgid "Manual DB Backup Job"
|
3867 |
msgstr ""
|
3868 |
|
3869 |
-
#: admin/db-backup-security/db-backup-security.php:
|
3870 |
msgid "Scheduled DB Backup Job"
|
3871 |
msgstr ""
|
3872 |
|
3873 |
-
#: admin/db-backup-security/db-backup-security.php:
|
3874 |
msgid "Frequency of Scheduled Backup Job (recurring)"
|
3875 |
msgstr ""
|
3876 |
|
3877 |
-
#: admin/db-backup-security/db-backup-security.php:
|
3878 |
-
#: admin/db-backup-security/db-backup-security.php:
|
3879 |
-
#: admin/db-backup-security/db-backup-security.php:
|
3880 |
-
#: admin/db-backup-security/db-backup-security.php:
|
3881 |
msgid "N/A"
|
3882 |
msgstr ""
|
3883 |
|
3884 |
-
#: admin/db-backup-security/db-backup-security.php:
|
3885 |
msgid "Hourly Scheduled DB Backup Job"
|
3886 |
msgstr ""
|
3887 |
|
3888 |
-
#: admin/db-backup-security/db-backup-security.php:
|
3889 |
msgid "Daily Scheduled DB Backup Job"
|
3890 |
msgstr ""
|
3891 |
|
3892 |
-
#: admin/db-backup-security/db-backup-security.php:
|
3893 |
msgid "Weekly Scheduled DB Backup Job"
|
3894 |
msgstr ""
|
3895 |
|
3896 |
-
#: admin/db-backup-security/db-backup-security.php:
|
3897 |
msgid "Monthly Scheduled DB Backup Job"
|
3898 |
msgstr ""
|
3899 |
|
3900 |
-
#: admin/db-backup-security/db-backup-security.php:
|
3901 |
msgid "Hour When Scheduled Backup is Run (recurring)"
|
3902 |
msgstr ""
|
3903 |
|
3904 |
-
#: admin/db-backup-security/db-backup-security.php:
|
3905 |
msgid "12AM"
|
3906 |
msgstr ""
|
3907 |
|
3908 |
-
#: admin/db-backup-security/db-backup-security.php:
|
3909 |
msgid "1AM"
|
3910 |
msgstr ""
|
3911 |
|
3912 |
-
#: admin/db-backup-security/db-backup-security.php:
|
3913 |
msgid "2AM"
|
3914 |
msgstr ""
|
3915 |
|
3916 |
-
#: admin/db-backup-security/db-backup-security.php:
|
3917 |
msgid "3AM"
|
3918 |
msgstr ""
|
3919 |
|
3920 |
-
#: admin/db-backup-security/db-backup-security.php:
|
3921 |
msgid "4AM"
|
3922 |
msgstr ""
|
3923 |
|
3924 |
-
#: admin/db-backup-security/db-backup-security.php:
|
3925 |
msgid "5AM"
|
3926 |
msgstr ""
|
3927 |
|
3928 |
-
#: admin/db-backup-security/db-backup-security.php:
|
3929 |
msgid "6AM"
|
3930 |
msgstr ""
|
3931 |
|
3932 |
-
#: admin/db-backup-security/db-backup-security.php:
|
3933 |
msgid "7AM"
|
3934 |
msgstr ""
|
3935 |
|
3936 |
-
#: admin/db-backup-security/db-backup-security.php:
|
3937 |
msgid "8AM"
|
3938 |
msgstr ""
|
3939 |
|
3940 |
-
#: admin/db-backup-security/db-backup-security.php:
|
3941 |
msgid "9AM"
|
3942 |
msgstr ""
|
3943 |
|
3944 |
-
#: admin/db-backup-security/db-backup-security.php:
|
3945 |
msgid "10AM"
|
3946 |
msgstr ""
|
3947 |
|
3948 |
-
#: admin/db-backup-security/db-backup-security.php:
|
3949 |
msgid "11AM"
|
3950 |
msgstr ""
|
3951 |
|
3952 |
-
#: admin/db-backup-security/db-backup-security.php:
|
3953 |
msgid "12PM"
|
3954 |
msgstr ""
|
3955 |
|
3956 |
-
#: admin/db-backup-security/db-backup-security.php:
|
3957 |
msgid "1PM"
|
3958 |
msgstr ""
|
3959 |
|
3960 |
-
#: admin/db-backup-security/db-backup-security.php:
|
3961 |
msgid "2PM"
|
3962 |
msgstr ""
|
3963 |
|
3964 |
-
#: admin/db-backup-security/db-backup-security.php:
|
3965 |
msgid "3PM"
|
3966 |
msgstr ""
|
3967 |
|
3968 |
-
#: admin/db-backup-security/db-backup-security.php:
|
3969 |
msgid "4PM"
|
3970 |
msgstr ""
|
3971 |
|
3972 |
-
#: admin/db-backup-security/db-backup-security.php:
|
3973 |
msgid "5PM"
|
3974 |
msgstr ""
|
3975 |
|
3976 |
-
#: admin/db-backup-security/db-backup-security.php:
|
3977 |
msgid "6PM"
|
3978 |
msgstr ""
|
3979 |
|
3980 |
-
#: admin/db-backup-security/db-backup-security.php:
|
3981 |
msgid "7PM"
|
3982 |
msgstr ""
|
3983 |
|
3984 |
-
#: admin/db-backup-security/db-backup-security.php:
|
3985 |
msgid "8PM"
|
3986 |
msgstr ""
|
3987 |
|
3988 |
-
#: admin/db-backup-security/db-backup-security.php:
|
3989 |
msgid "9PM"
|
3990 |
msgstr ""
|
3991 |
|
3992 |
-
#: admin/db-backup-security/db-backup-security.php:
|
3993 |
msgid "10PM"
|
3994 |
msgstr ""
|
3995 |
|
3996 |
-
#: admin/db-backup-security/db-backup-security.php:
|
3997 |
msgid "11PM"
|
3998 |
msgstr ""
|
3999 |
|
4000 |
-
#: admin/db-backup-security/db-backup-security.php:
|
4001 |
msgid "Day of Week When Scheduled Backup is Run (recurring)"
|
4002 |
msgstr ""
|
4003 |
|
4004 |
-
#: admin/db-backup-security/db-backup-security.php:
|
4005 |
msgid "Sunday"
|
4006 |
msgstr ""
|
4007 |
|
4008 |
-
#: admin/db-backup-security/db-backup-security.php:
|
4009 |
msgid "Monday"
|
4010 |
msgstr ""
|
4011 |
|
4012 |
-
#: admin/db-backup-security/db-backup-security.php:
|
4013 |
msgid "Tuesday"
|
4014 |
msgstr ""
|
4015 |
|
4016 |
-
#: admin/db-backup-security/db-backup-security.php:
|
4017 |
msgid "Wednesday"
|
4018 |
msgstr ""
|
4019 |
|
4020 |
-
#: admin/db-backup-security/db-backup-security.php:
|
4021 |
msgid "Thursday"
|
4022 |
msgstr ""
|
4023 |
|
4024 |
-
#: admin/db-backup-security/db-backup-security.php:
|
4025 |
msgid "Friday"
|
4026 |
msgstr ""
|
4027 |
|
4028 |
-
#: admin/db-backup-security/db-backup-security.php:
|
4029 |
msgid "Saturday"
|
4030 |
msgstr ""
|
4031 |
|
4032 |
-
#: admin/db-backup-security/db-backup-security.php:
|
4033 |
msgid "Day of Month When Scheduled Backup is Run (recurring)"
|
4034 |
msgstr ""
|
4035 |
|
4036 |
-
#: admin/db-backup-security/db-backup-security.php:
|
4037 |
msgid "1st"
|
4038 |
msgstr ""
|
4039 |
|
4040 |
-
#: admin/db-backup-security/db-backup-security.php:
|
4041 |
msgid "2nd"
|
4042 |
msgstr ""
|
4043 |
|
4044 |
-
#: admin/db-backup-security/db-backup-security.php:
|
4045 |
msgid "3rd"
|
4046 |
msgstr ""
|
4047 |
|
4048 |
-
#: admin/db-backup-security/db-backup-security.php:
|
4049 |
msgid "4th"
|
4050 |
msgstr ""
|
4051 |
|
4052 |
-
#: admin/db-backup-security/db-backup-security.php:
|
4053 |
msgid "5th"
|
4054 |
msgstr ""
|
4055 |
|
4056 |
-
#: admin/db-backup-security/db-backup-security.php:
|
4057 |
msgid "6th"
|
4058 |
msgstr ""
|
4059 |
|
4060 |
-
#: admin/db-backup-security/db-backup-security.php:
|
4061 |
msgid "7th"
|
4062 |
msgstr ""
|
4063 |
|
4064 |
-
#: admin/db-backup-security/db-backup-security.php:
|
4065 |
msgid "8th"
|
4066 |
msgstr ""
|
4067 |
|
4068 |
-
#: admin/db-backup-security/db-backup-security.php:
|
4069 |
msgid "9th"
|
4070 |
msgstr ""
|
4071 |
|
4072 |
-
#: admin/db-backup-security/db-backup-security.php:
|
4073 |
msgid "10th"
|
4074 |
msgstr ""
|
4075 |
|
4076 |
-
#: admin/db-backup-security/db-backup-security.php:
|
4077 |
msgid "11th"
|
4078 |
msgstr ""
|
4079 |
|
4080 |
-
#: admin/db-backup-security/db-backup-security.php:
|
4081 |
msgid "12th"
|
4082 |
msgstr ""
|
4083 |
|
4084 |
-
#: admin/db-backup-security/db-backup-security.php:
|
4085 |
msgid "13th"
|
4086 |
msgstr ""
|
4087 |
|
4088 |
-
#: admin/db-backup-security/db-backup-security.php:
|
4089 |
msgid "14th"
|
4090 |
msgstr ""
|
4091 |
|
4092 |
-
#: admin/db-backup-security/db-backup-security.php:
|
4093 |
msgid "15th"
|
4094 |
msgstr ""
|
4095 |
|
4096 |
-
#: admin/db-backup-security/db-backup-security.php:
|
4097 |
msgid "16th"
|
4098 |
msgstr ""
|
4099 |
|
4100 |
-
#: admin/db-backup-security/db-backup-security.php:
|
4101 |
msgid "17th"
|
4102 |
msgstr ""
|
4103 |
|
4104 |
-
#: admin/db-backup-security/db-backup-security.php:
|
4105 |
msgid "18th"
|
4106 |
msgstr ""
|
4107 |
|
4108 |
-
#: admin/db-backup-security/db-backup-security.php:
|
4109 |
msgid "19th"
|
4110 |
msgstr ""
|
4111 |
|
4112 |
-
#: admin/db-backup-security/db-backup-security.php:
|
4113 |
msgid "20th"
|
4114 |
msgstr ""
|
4115 |
|
4116 |
-
#: admin/db-backup-security/db-backup-security.php:
|
4117 |
msgid "21st"
|
4118 |
msgstr ""
|
4119 |
|
4120 |
-
#: admin/db-backup-security/db-backup-security.php:
|
4121 |
msgid "22nd"
|
4122 |
msgstr ""
|
4123 |
|
4124 |
-
#: admin/db-backup-security/db-backup-security.php:
|
4125 |
msgid "23rd"
|
4126 |
msgstr ""
|
4127 |
|
4128 |
-
#: admin/db-backup-security/db-backup-security.php:
|
4129 |
msgid "24th"
|
4130 |
msgstr ""
|
4131 |
|
4132 |
-
#: admin/db-backup-security/db-backup-security.php:
|
4133 |
msgid "25th"
|
4134 |
msgstr ""
|
4135 |
|
4136 |
-
#: admin/db-backup-security/db-backup-security.php:
|
4137 |
msgid "26th"
|
4138 |
msgstr ""
|
4139 |
|
4140 |
-
#: admin/db-backup-security/db-backup-security.php:
|
4141 |
msgid "27th"
|
4142 |
msgstr ""
|
4143 |
|
4144 |
-
#: admin/db-backup-security/db-backup-security.php:
|
4145 |
msgid "28th"
|
4146 |
msgstr ""
|
4147 |
|
4148 |
-
#: admin/db-backup-security/db-backup-security.php:
|
4149 |
msgid "29th"
|
4150 |
msgstr ""
|
4151 |
|
4152 |
-
#: admin/db-backup-security/db-backup-security.php:
|
4153 |
msgid "30th"
|
4154 |
msgstr ""
|
4155 |
|
4156 |
-
#: admin/db-backup-security/db-backup-security.php:
|
4157 |
msgid "Send Scheduled Backup Zip File Via Email or Just Email Only:"
|
4158 |
msgstr ""
|
4159 |
|
4160 |
-
#: admin/db-backup-security/db-backup-security.php:
|
4161 |
msgid ""
|
4162 |
"Note: Check with your email provider for the maximum<br>file attachment size "
|
4163 |
"limit that is allowed by your Mail Server"
|
4164 |
msgstr ""
|
4165 |
|
4166 |
-
#: admin/db-backup-security/db-backup-security.php:
|
4167 |
msgid "Do Not Email Zip Backup File"
|
4168 |
msgstr ""
|
4169 |
|
4170 |
-
#: admin/db-backup-security/db-backup-security.php:
|
4171 |
msgid "Email & Delete Zip Backup File"
|
4172 |
msgstr ""
|
4173 |
|
4174 |
-
#: admin/db-backup-security/db-backup-security.php:
|
4175 |
msgid "Email Zip Backup File"
|
4176 |
msgstr ""
|
4177 |
|
4178 |
-
#: admin/db-backup-security/db-backup-security.php:
|
4179 |
msgid "Send Email Only & Not Zip Backup File"
|
4180 |
msgstr ""
|
4181 |
|
4182 |
-
#: admin/db-backup-security/db-backup-security.php:
|
4183 |
msgid "Automatically Delete Old Backup Files:"
|
4184 |
msgstr ""
|
4185 |
|
4186 |
-
#: admin/db-backup-security/db-backup-security.php:
|
4187 |
-
#: admin/db-backup-security/db-backup-security.php:
|
4188 |
msgid "Independent Option:"
|
4189 |
msgstr ""
|
4190 |
|
4191 |
-
#: admin/db-backup-security/db-backup-security.php:
|
4192 |
msgid "Never Delete Old Backup Files"
|
4193 |
msgstr ""
|
4194 |
|
4195 |
-
#: admin/db-backup-security/db-backup-security.php:
|
4196 |
msgid "Delete Backup Files Older Than 1 Day"
|
4197 |
msgstr ""
|
4198 |
|
4199 |
-
#: admin/db-backup-security/db-backup-security.php:
|
4200 |
msgid "Delete Backup Files Older Than 5 Days"
|
4201 |
msgstr ""
|
4202 |
|
4203 |
-
#: admin/db-backup-security/db-backup-security.php:
|
4204 |
msgid "Delete Backup Files Older Than 10 Days"
|
4205 |
msgstr ""
|
4206 |
|
4207 |
-
#: admin/db-backup-security/db-backup-security.php:
|
4208 |
msgid "Delete Backup Files Older Than 15 Days"
|
4209 |
msgstr ""
|
4210 |
|
4211 |
-
#: admin/db-backup-security/db-backup-security.php:
|
4212 |
msgid "Delete Backup Files Older Than 30 Days"
|
4213 |
msgstr ""
|
4214 |
|
4215 |
-
#: admin/db-backup-security/db-backup-security.php:
|
4216 |
msgid "Delete Backup Files Older Than 60 Days"
|
4217 |
msgstr ""
|
4218 |
|
4219 |
-
#: admin/db-backup-security/db-backup-security.php:
|
4220 |
msgid "Delete Backup Files Older Than 90 Days"
|
4221 |
msgstr ""
|
4222 |
|
4223 |
-
#: admin/db-backup-security/db-backup-security.php:
|
4224 |
msgid "Delete Backup Files Older Than 180 Days"
|
4225 |
msgstr ""
|
4226 |
|
4227 |
-
#: admin/db-backup-security/db-backup-security.php:
|
4228 |
msgid "Turn On|Off All Scheduled Backups (Override):"
|
4229 |
msgstr ""
|
4230 |
|
4231 |
-
#: admin/db-backup-security/db-backup-security.php:
|
4232 |
msgid "All Scheduled Backups On"
|
4233 |
msgstr ""
|
4234 |
|
4235 |
-
#: admin/db-backup-security/db-backup-security.php:
|
4236 |
msgid "All Scheduled Backups Off"
|
4237 |
msgstr ""
|
4238 |
|
4239 |
-
#: admin/db-backup-security/db-backup-security.php:
|
4240 |
msgid "Click OK to Create this Backup Job or click Cancel"
|
4241 |
msgstr ""
|
4242 |
|
4243 |
-
#: admin/db-backup-security/db-backup-security.php:
|
4244 |
msgid "Rename|Create|Reset DB Backup Folder Name:"
|
4245 |
msgstr ""
|
4246 |
|
4247 |
-
#: admin/db-backup-security/db-backup-security.php:
|
4248 |
msgid "Randomly Generated New DB Backup Folder Name."
|
4249 |
msgstr ""
|
4250 |
|
4251 |
-
#: admin/db-backup-security/db-backup-security.php:
|
4252 |
msgid "Valid Folder Naming Characters: a-z A-Z 0-9 - _"
|
4253 |
msgstr ""
|
4254 |
|
4255 |
-
#: admin/db-backup-security/db-backup-security.php:
|
4256 |
msgid ""
|
4257 |
"The Rename|Create|Reset Tool renames the DB Backup folder if it already "
|
4258 |
"exists or creates a new DB Backup folder if it does not already exist.\\n"
|
@@ -4264,109 +4253,109 @@ msgid ""
|
|
4264 |
"OK to proceed or click Cancel"
|
4265 |
msgstr ""
|
4266 |
|
4267 |
-
#: admin/db-backup-security/db-backup-security.php:
|
4268 |
-
#: admin/db-backup-security/db-backup-security.php:
|
4269 |
msgid "DB Backup Log File Size: "
|
4270 |
msgstr ""
|
4271 |
|
4272 |
-
#: admin/db-backup-security/db-backup-security.php:
|
4273 |
msgid "The Email Logging options will only send log files up to 2MB in size."
|
4274 |
msgstr ""
|
4275 |
|
4276 |
-
#: admin/db-backup-security/db-backup-security.php:
|
4277 |
msgid ""
|
4278 |
"Copy and paste the DB Backup Log file contents into a Notepad text file on "
|
4279 |
"your computer and save it."
|
4280 |
msgstr ""
|
4281 |
|
4282 |
-
#: admin/db-backup-security/db-backup-security.php:
|
4283 |
-
#: admin/mscan/mscan.php:
|
4284 |
msgid ""
|
4285 |
"Then click the Delete Log button to delete the contents of this Log file."
|
4286 |
msgstr ""
|
4287 |
|
4288 |
-
#: admin/db-backup-security/db-backup-security.php:
|
4289 |
msgid "DB Backup Log Last Modified Time: "
|
4290 |
msgstr ""
|
4291 |
|
4292 |
-
#: admin/db-backup-security/db-backup-security.php:
|
4293 |
msgid ""
|
4294 |
"Success! Your DB Backup Log file has been deleted and replaced with a new "
|
4295 |
"blank DB Backup Log file."
|
4296 |
msgstr ""
|
4297 |
|
4298 |
-
#: admin/db-backup-security/db-backup-security.php:
|
4299 |
msgid "Clicking OK will delete the contents of your DB Backup Log file."
|
4300 |
msgstr ""
|
4301 |
|
4302 |
-
#: admin/db-backup-security/db-backup-security.php:
|
4303 |
-
#: admin/mscan/mscan.php:
|
4304 |
msgid "Click OK to Delete the Log file contents or click Cancel."
|
4305 |
msgstr ""
|
4306 |
|
4307 |
-
#: admin/db-backup-security/db-backup-security.php:
|
4308 |
msgid ""
|
4309 |
"The DB Backup Log File Was Not Found! Check that the file really exists here "
|
4310 |
"- /"
|
4311 |
msgstr ""
|
4312 |
|
4313 |
-
#: admin/db-backup-security/db-backup-security.php:
|
4314 |
msgid "/bps-backup/logs/db_backup_log.txt and is named correctly."
|
4315 |
msgstr ""
|
4316 |
|
4317 |
-
#: admin/db-backup-security/db-backup-security.php:
|
4318 |
msgid ""
|
4319 |
"File Open and Write test successful! Your DB Backup Log file is writable."
|
4320 |
msgstr ""
|
4321 |
|
4322 |
-
#: admin/db-backup-security/db-backup-security.php:
|
4323 |
msgid "Success! Your DB Backup Log file has been updated."
|
4324 |
msgstr ""
|
4325 |
|
4326 |
-
#: admin/db-backup-security/db-backup-security.php:
|
4327 |
msgid "Your current WordPress Database Table Prefix is: "
|
4328 |
msgstr ""
|
4329 |
|
4330 |
-
#: admin/db-backup-security/db-backup-security.php:
|
4331 |
msgid "NOTES: "
|
4332 |
msgstr ""
|
4333 |
|
4334 |
-
#: admin/db-backup-security/db-backup-security.php:
|
4335 |
msgid ""
|
4336 |
"1. It is recommended that you backup your database before using this tool."
|
4337 |
msgstr ""
|
4338 |
|
4339 |
-
#: admin/db-backup-security/db-backup-security.php:
|
4340 |
msgid ""
|
4341 |
"2. If you want to create your own DB Table Prefix name or add additional "
|
4342 |
"characters to the randomly generated DB Table Prefix name below then ONLY "
|
4343 |
"use lowercase letters, numbers and underscores in your DB Table Prefix name."
|
4344 |
msgstr ""
|
4345 |
|
4346 |
-
#: admin/db-backup-security/db-backup-security.php:
|
4347 |
msgid ""
|
4348 |
"3. The maximum length limitation of a DB Table name, including the table "
|
4349 |
"prefix is 64 characters. See the DB Table Names & Character Length Table to "
|
4350 |
"the right."
|
4351 |
msgstr ""
|
4352 |
|
4353 |
-
#: admin/db-backup-security/db-backup-security.php:
|
4354 |
msgid ""
|
4355 |
"4. To change your DB Table Prefix name back to the WordPress default DB "
|
4356 |
"Table Prefix name, enter wp_ for the DB Table Prefix name."
|
4357 |
msgstr ""
|
4358 |
|
4359 |
-
#: admin/db-backup-security/db-backup-security.php:
|
4360 |
msgid ""
|
4361 |
"ERROR: The DB Table Prefix name can only contain numbers, lowercase letters, "
|
4362 |
"and underscores."
|
4363 |
msgstr ""
|
4364 |
|
4365 |
-
#: admin/db-backup-security/db-backup-security.php:
|
4366 |
msgid "A wp-config.php file was NOT found in your website root folder."
|
4367 |
msgstr ""
|
4368 |
|
4369 |
-
#: admin/db-backup-security/db-backup-security.php:
|
4370 |
msgid ""
|
4371 |
"Your DB Table Prefix was not changed. If you have moved your wp-config.php "
|
4372 |
"file to a another Server folder then you can use this tool to change your DB "
|
@@ -4374,13 +4363,13 @@ msgid ""
|
|
4374 |
"file back to the default location: your WordPress website root folder."
|
4375 |
msgstr ""
|
4376 |
|
4377 |
-
#: admin/db-backup-security/db-backup-security.php:
|
4378 |
msgid ""
|
4379 |
"Error: The wp-config.php file is not writable. Unable to write to the wp-"
|
4380 |
"config.php file."
|
4381 |
msgstr ""
|
4382 |
|
4383 |
-
#: admin/db-backup-security/db-backup-security.php:
|
4384 |
msgid ""
|
4385 |
"Your DB Table Prefix was not changed. You will need to make the wp-config."
|
4386 |
"php file writable first by changing either the file permissions or Ownership "
|
@@ -4388,24 +4377,24 @@ msgid ""
|
|
4388 |
"DB Table Prefix Changer tool to change your DB Table Prefix."
|
4389 |
msgstr ""
|
4390 |
|
4391 |
-
#: admin/db-backup-security/db-backup-security.php:
|
4392 |
msgid ""
|
4393 |
"DB Table Prefix Name change completed. Click the Load|Refresh Table button "
|
4394 |
"to load/refresh the DB Table Names & Character Length Table if you would "
|
4395 |
"like to check the new DB Table Prefix Name Changes."
|
4396 |
msgstr ""
|
4397 |
|
4398 |
-
#: admin/db-backup-security/db-backup-security.php:
|
4399 |
msgid ""
|
4400 |
"Click the Update Site User Roles button to complete the DB Table Prefix Name "
|
4401 |
"change."
|
4402 |
msgstr ""
|
4403 |
|
4404 |
-
#: admin/db-backup-security/db-backup-security.php:
|
4405 |
msgid "Randomly Generated DB Table Prefix"
|
4406 |
msgstr ""
|
4407 |
|
4408 |
-
#: admin/db-backup-security/db-backup-security.php:
|
4409 |
msgid ""
|
4410 |
"DB Table Prefix Name change completed. Click the Load|Refresh Table button "
|
4411 |
"to load/refresh the DB Table Names & Character Length Table if you would "
|
@@ -4414,44 +4403,44 @@ msgid ""
|
|
4414 |
"new DB Table names."
|
4415 |
msgstr ""
|
4416 |
|
4417 |
-
#: admin/db-backup-security/db-backup-security.php:
|
4418 |
msgid ""
|
4419 |
"This button must be clicked AFTER clicking the Change DB Table Prefix button "
|
4420 |
"above."
|
4421 |
msgstr ""
|
4422 |
|
4423 |
-
#: admin/db-backup-security/db-backup-security.php:
|
4424 |
msgid "Length"
|
4425 |
msgstr ""
|
4426 |
|
4427 |
-
#: admin/db-backup-security/db-backup-security.php:
|
4428 |
msgid "DB Table Name|Column"
|
4429 |
msgstr ""
|
4430 |
|
4431 |
-
#: admin/db-backup-security/db-backup-security.php:
|
4432 |
msgid "Other Prefix Changes"
|
4433 |
msgstr ""
|
4434 |
|
4435 |
-
#: admin/db-backup-security/db-backup-security.php:
|
4436 |
msgid "DB Table Names & Character Length Table"
|
4437 |
msgstr ""
|
4438 |
|
4439 |
-
#: admin/db-backup-security/db-backup-security.php:
|
4440 |
msgid ""
|
4441 |
"Displays your Current DB Table Names & Length Including The DB Table Prefix"
|
4442 |
msgstr ""
|
4443 |
|
4444 |
-
#: admin/db-backup-security/db-backup-security.php:
|
4445 |
-
#: admin/mscan/mscan.php:
|
4446 |
msgid "BPS Pro Features & Version Release Dates"
|
4447 |
msgstr ""
|
4448 |
|
4449 |
-
#: admin/db-backup-security/db-backup-security.php:
|
4450 |
-
#: admin/mscan/mscan.php:
|
4451 |
msgid "Video Tutorials"
|
4452 |
msgstr ""
|
4453 |
|
4454 |
-
#: admin/db-backup-security/db-backup-security.php:
|
4455 |
msgid "DB Backup & Security Guide & Troubleshooting"
|
4456 |
msgstr ""
|
4457 |
|
@@ -4689,22 +4678,22 @@ msgstr ""
|
|
4689 |
msgid "Refresh Status"
|
4690 |
msgstr ""
|
4691 |
|
4692 |
-
#: admin/email-log-settings/email-log-settings.php:
|
4693 |
msgid "Reset|Recheck Dismiss Notices:"
|
4694 |
msgstr ""
|
4695 |
|
4696 |
-
#: admin/email-log-settings/email-log-settings.php:
|
4697 |
msgid ""
|
4698 |
"Clicking this button resets ALL Dismiss Notices such as Bonus Code Dismiss "
|
4699 |
"Notices and ALL other Dismiss Notices. If you previously dismissed a Dismiss "
|
4700 |
"Notice and want to display it again at a later time click this button."
|
4701 |
msgstr ""
|
4702 |
|
4703 |
-
#: admin/email-log-settings/email-log-settings.php:
|
4704 |
msgid "Email Alerts & Log File Settings"
|
4705 |
msgstr ""
|
4706 |
|
4707 |
-
#: admin/email-log-settings/email-log-settings.php:
|
4708 |
msgid ""
|
4709 |
"The email address fields To, From, Cc and Bcc can be email addresses for "
|
4710 |
"your hosting account, your WordPress Administrator email address or 3rd "
|
@@ -4714,16 +4703,16 @@ msgid ""
|
|
4714 |
"space or not add a space after the comma between email addresses."
|
4715 |
msgstr ""
|
4716 |
|
4717 |
-
#: admin/email-log-settings/email-log-settings.php:
|
4718 |
msgid ""
|
4719 |
"Email Alerting and Log file options are located in S-Monitor in BPS Pro."
|
4720 |
msgstr ""
|
4721 |
|
4722 |
-
#: admin/email-log-settings/email-log-settings.php:
|
4723 |
msgid "Login Security: Send Email Alert When..."
|
4724 |
msgstr ""
|
4725 |
|
4726 |
-
#: admin/email-log-settings/email-log-settings.php:
|
4727 |
msgid ""
|
4728 |
"There are 5 different email options. Choose to have email alerts sent when a "
|
4729 |
"User Account is locked out, An Administrator Logs in, An Administrator Logs "
|
@@ -4731,7 +4720,7 @@ msgid ""
|
|
4731 |
"Account is locked out or Do Not Send Email Alerts."
|
4732 |
msgstr ""
|
4733 |
|
4734 |
-
#: admin/email-log-settings/email-log-settings.php:
|
4735 |
msgid ""
|
4736 |
"The email alerts contain the action that occurred with Timestamp and these "
|
4737 |
"fields: Username, Status, Role, Email, Lockout Time, Lockout Time Expires, "
|
@@ -4739,11 +4728,11 @@ msgid ""
|
|
4739 |
"where the action occurred."
|
4740 |
msgstr ""
|
4741 |
|
4742 |
-
#: admin/email-log-settings/email-log-settings.php:
|
4743 |
msgid "Security Log File Email|Delete Log File When..."
|
4744 |
msgstr ""
|
4745 |
|
4746 |
-
#: admin/email-log-settings/email-log-settings.php:
|
4747 |
msgid ""
|
4748 |
"Select the maximum Log File size that you want to allow for your Security "
|
4749 |
"Log File and then select the option that you want when your log file reaches "
|
@@ -4751,11 +4740,11 @@ msgid ""
|
|
4751 |
"and delete it or just delete it without emailing the log file to you first."
|
4752 |
msgstr ""
|
4753 |
|
4754 |
-
#: admin/email-log-settings/email-log-settings.php:
|
4755 |
msgid "DB Backup Log File Email|Delete Log File When..."
|
4756 |
msgstr ""
|
4757 |
|
4758 |
-
#: admin/email-log-settings/email-log-settings.php:
|
4759 |
msgid ""
|
4760 |
"Select the maximum Log File size that you want to allow for your DB Backup "
|
4761 |
"Log File and then select the option that you want when your log file reaches "
|
@@ -4763,12 +4752,12 @@ msgid ""
|
|
4763 |
"and delete it or just delete it without emailing the log file to you first."
|
4764 |
msgstr ""
|
4765 |
|
4766 |
-
#: admin/email-log-settings/email-log-settings.php:
|
4767 |
-
#: admin/email-log-settings/email-log-settings.php:
|
4768 |
msgid "MScan Malware Scanner Email|Delete Log File When..."
|
4769 |
msgstr ""
|
4770 |
|
4771 |
-
#: admin/email-log-settings/email-log-settings.php:
|
4772 |
msgid ""
|
4773 |
"Select the maximum Log File size that you want to allow for your MScan Log "
|
4774 |
"File and then select the option that you want when your log file reaches "
|
@@ -4776,12 +4765,12 @@ msgid ""
|
|
4776 |
"and delete it or just delete it without emailing the log file to you first."
|
4777 |
msgstr ""
|
4778 |
|
4779 |
-
#: admin/email-log-settings/email-log-settings.php:
|
4780 |
-
#: admin/email-log-settings/email-log-settings.php:
|
4781 |
msgid "Plugin Updates Available Email Alert:"
|
4782 |
msgstr ""
|
4783 |
|
4784 |
-
#: admin/email-log-settings/email-log-settings.php:
|
4785 |
msgid ""
|
4786 |
"Choose whether or not to have email alerts sent if new Plugin version "
|
4787 |
"updates are available. The default setting is \"Do Not Send Email Alerts\". "
|
@@ -4789,130 +4778,130 @@ msgid ""
|
|
4789 |
"Plugins."
|
4790 |
msgstr ""
|
4791 |
|
4792 |
-
#: admin/email-log-settings/email-log-settings.php:
|
4793 |
-
#: admin/email-log-settings/email-log-settings.php:
|
4794 |
msgid "Theme Updates Available Email Alert:"
|
4795 |
msgstr ""
|
4796 |
|
4797 |
-
#: admin/email-log-settings/email-log-settings.php:
|
4798 |
msgid ""
|
4799 |
"Choose whether or not to have email alerts sent if new Theme version updates "
|
4800 |
"are available. The default setting is \"Do Not Send Email Alerts\". You can "
|
4801 |
"choose either to send email alerts for all Themes or only the Active Theme."
|
4802 |
msgstr ""
|
4803 |
|
4804 |
-
#: admin/email-log-settings/email-log-settings.php:
|
4805 |
msgid "Reset|Recheck Dismiss Notices: "
|
4806 |
msgstr ""
|
4807 |
|
4808 |
-
#: admin/email-log-settings/email-log-settings.php:
|
4809 |
msgid "Send Email Alerts & Log Files To:"
|
4810 |
msgstr ""
|
4811 |
|
4812 |
-
#: admin/email-log-settings/email-log-settings.php:
|
4813 |
msgid "Send Email Alerts & Log Files From:"
|
4814 |
msgstr ""
|
4815 |
|
4816 |
-
#: admin/email-log-settings/email-log-settings.php:
|
4817 |
msgid "Send Email Alerts & Log Files Cc:"
|
4818 |
msgstr ""
|
4819 |
|
4820 |
-
#: admin/email-log-settings/email-log-settings.php:
|
4821 |
msgid "Send Email Alerts & Log Files Bcc:"
|
4822 |
msgstr ""
|
4823 |
|
4824 |
-
#: admin/email-log-settings/email-log-settings.php:
|
4825 |
msgid "Login Security: Send Login Security Email Alert When..."
|
4826 |
msgstr ""
|
4827 |
|
4828 |
-
#: admin/email-log-settings/email-log-settings.php:
|
4829 |
msgid "A User Account Is Locked Out"
|
4830 |
msgstr ""
|
4831 |
|
4832 |
-
#: admin/email-log-settings/email-log-settings.php:
|
4833 |
msgid "An Administrator Logs In"
|
4834 |
msgstr ""
|
4835 |
|
4836 |
-
#: admin/email-log-settings/email-log-settings.php:
|
4837 |
msgid "An Administrator Logs In & A User Account is Locked Out"
|
4838 |
msgstr ""
|
4839 |
|
4840 |
-
#: admin/email-log-settings/email-log-settings.php:
|
4841 |
msgid "Any User Logs In & A User Account is Locked Out"
|
4842 |
msgstr ""
|
4843 |
|
4844 |
-
#: admin/email-log-settings/email-log-settings.php:
|
4845 |
-
#: admin/email-log-settings/email-log-settings.php:
|
4846 |
-
#: admin/email-log-settings/email-log-settings.php:
|
4847 |
msgid "Do Not Send Email Alerts"
|
4848 |
msgstr ""
|
4849 |
|
4850 |
-
#: admin/email-log-settings/email-log-settings.php:
|
4851 |
msgid "Security Log: Email|Delete Security Log File When..."
|
4852 |
msgstr ""
|
4853 |
|
4854 |
-
#: admin/email-log-settings/email-log-settings.php:358
|
4855 |
-
#: admin/email-log-settings/email-log-settings.php:370
|
4856 |
-
#: admin/email-log-settings/email-log-settings.php:382
|
4857 |
-
msgid "500KB"
|
4858 |
-
msgstr ""
|
4859 |
-
|
4860 |
#: admin/email-log-settings/email-log-settings.php:359
|
4861 |
#: admin/email-log-settings/email-log-settings.php:371
|
4862 |
#: admin/email-log-settings/email-log-settings.php:383
|
4863 |
-
msgid "
|
4864 |
msgstr ""
|
4865 |
|
4866 |
#: admin/email-log-settings/email-log-settings.php:360
|
4867 |
#: admin/email-log-settings/email-log-settings.php:372
|
4868 |
#: admin/email-log-settings/email-log-settings.php:384
|
4869 |
-
msgid "
|
4870 |
msgstr ""
|
4871 |
|
4872 |
-
#: admin/email-log-settings/email-log-settings.php:
|
4873 |
-
#: admin/email-log-settings/email-log-settings.php:
|
4874 |
-
#: admin/email-log-settings/email-log-settings.php:
|
4875 |
-
msgid "
|
4876 |
msgstr ""
|
4877 |
|
4878 |
#: admin/email-log-settings/email-log-settings.php:364
|
4879 |
#: admin/email-log-settings/email-log-settings.php:376
|
4880 |
#: admin/email-log-settings/email-log-settings.php:388
|
4881 |
-
msgid "Delete Log File"
|
4882 |
msgstr ""
|
4883 |
|
4884 |
-
#: admin/email-log-settings/email-log-settings.php:
|
4885 |
-
|
|
|
|
|
4886 |
msgstr ""
|
4887 |
|
4888 |
-
#: admin/email-log-settings/email-log-settings.php:
|
4889 |
-
|
4890 |
-
msgid "1 Hour"
|
4891 |
msgstr ""
|
4892 |
|
4893 |
#: admin/email-log-settings/email-log-settings.php:395
|
4894 |
#: admin/email-log-settings/email-log-settings.php:408
|
4895 |
-
msgid "
|
4896 |
msgstr ""
|
4897 |
|
4898 |
#: admin/email-log-settings/email-log-settings.php:396
|
4899 |
#: admin/email-log-settings/email-log-settings.php:409
|
|
|
|
|
|
|
|
|
|
|
4900 |
msgid "1 Day"
|
4901 |
msgstr ""
|
4902 |
|
4903 |
-
#: admin/email-log-settings/email-log-settings.php:
|
4904 |
msgid "Send Email Alerts for All Plugins"
|
4905 |
msgstr ""
|
4906 |
|
4907 |
-
#: admin/email-log-settings/email-log-settings.php:
|
4908 |
msgid "Send Email Alerts for Active Plugins Only"
|
4909 |
msgstr ""
|
4910 |
|
4911 |
-
#: admin/email-log-settings/email-log-settings.php:
|
4912 |
msgid "Send Email Alerts for All Themes"
|
4913 |
msgstr ""
|
4914 |
|
4915 |
-
#: admin/email-log-settings/email-log-settings.php:
|
4916 |
msgid "Send Email Alerts for Active Theme Only"
|
4917 |
msgstr ""
|
4918 |
|
@@ -4935,8 +4924,8 @@ msgid "Login Security"
|
|
4935 |
msgstr ""
|
4936 |
|
4937 |
#: admin/includes/admin.php:404 admin/includes/admin.php:429
|
4938 |
-
#: admin/login/login.php:167 admin/login/login.php:
|
4939 |
-
#: admin/login/login.php:
|
4940 |
msgid "JTC-Lite"
|
4941 |
msgstr ""
|
4942 |
|
@@ -4981,9 +4970,9 @@ msgstr ""
|
|
4981 |
msgid "Security Log"
|
4982 |
msgstr ""
|
4983 |
|
4984 |
-
#: admin/includes/admin.php:445 admin/wizard/wizard.php:
|
4985 |
-
#: admin/wizard/wizard.php:
|
4986 |
-
#: admin/wizard/wizard.php:
|
4987 |
#: bulletproof-security.php:161
|
4988 |
msgid "Setup Wizard"
|
4989 |
msgstr ""
|
@@ -5076,17 +5065,17 @@ msgstr ""
|
|
5076 |
msgid "Login Security & Monitoring"
|
5077 |
msgstr ""
|
5078 |
|
5079 |
-
#: admin/login/login.php:171 admin/login/login.php:
|
5080 |
-
#: admin/login/login.php:
|
5081 |
msgid "Idle Session Logout|Auth Cookie Expiration"
|
5082 |
msgstr ""
|
5083 |
|
5084 |
-
#: admin/login/login.php:173 admin/login/login.php:
|
5085 |
-
#: admin/login/login.php:
|
5086 |
msgid "Force Strong Passwords"
|
5087 |
msgstr ""
|
5088 |
|
5089 |
-
#: admin/login/login.php:183 admin/login/login.php:
|
5090 |
#: admin/maintenance/maintenance.php:185
|
5091 |
msgid "Notice: "
|
5092 |
msgstr ""
|
@@ -5095,147 +5084,147 @@ msgstr ""
|
|
5095 |
msgid "You have disabled wp-admin BulletProof Mode on the Security Modes page."
|
5096 |
msgstr ""
|
5097 |
|
5098 |
-
#: admin/login/login.php:183 admin/login/login.php:
|
5099 |
#: admin/maintenance/maintenance.php:185
|
5100 |
msgid "If you have Go Daddy \"Managed WordPress Hosting\" click this link: "
|
5101 |
msgstr ""
|
5102 |
|
5103 |
-
#: admin/login/login.php:183 admin/login/login.php:
|
5104 |
#: admin/maintenance/maintenance.php:185
|
5105 |
msgid "Go Daddy Managed WordPress Hosting"
|
5106 |
msgstr ""
|
5107 |
|
5108 |
-
#: admin/login/login.php:
|
5109 |
-
#: admin/mscan/mscan.php:
|
5110 |
msgid "Submit"
|
5111 |
msgstr ""
|
5112 |
|
5113 |
-
#: admin/login/login.php:
|
5114 |
msgid " has been deleted from the Login Security Database Table."
|
5115 |
msgstr ""
|
5116 |
|
5117 |
-
#: admin/login/login.php:
|
5118 |
msgid " has been Unlocked."
|
5119 |
msgstr ""
|
5120 |
|
5121 |
-
#: admin/login/login.php:
|
5122 |
msgid " has been Locked."
|
5123 |
msgstr ""
|
5124 |
|
5125 |
-
#: admin/login/login.php:
|
5126 |
msgid "Max Login Attempts:"
|
5127 |
msgstr ""
|
5128 |
|
5129 |
-
#: admin/login/login.php:
|
5130 |
msgid "Automatic Lockout Time:"
|
5131 |
msgstr ""
|
5132 |
|
5133 |
-
#: admin/login/login.php:
|
5134 |
msgid "Minutes"
|
5135 |
msgstr ""
|
5136 |
|
5137 |
-
#: admin/login/login.php:
|
5138 |
msgid "Manual Lockout Time:"
|
5139 |
msgstr ""
|
5140 |
|
5141 |
-
#: admin/login/login.php:
|
5142 |
msgid "Max DB Rows To Show:"
|
5143 |
msgstr ""
|
5144 |
|
5145 |
-
#: admin/login/login.php:
|
5146 |
msgid "Blank = Show All Rows"
|
5147 |
msgstr ""
|
5148 |
|
5149 |
-
#: admin/login/login.php:
|
5150 |
msgid " Enable Login Security for WooCommerce (BPS Pro Only)"
|
5151 |
msgstr ""
|
5152 |
|
5153 |
-
#: admin/login/login.php:
|
5154 |
-
#: admin/login/login.php:
|
5155 |
msgid "Turn On|Turn Off:"
|
5156 |
msgstr ""
|
5157 |
|
5158 |
-
#: admin/login/login.php:
|
5159 |
msgid "Login Security On"
|
5160 |
msgstr ""
|
5161 |
|
5162 |
-
#: admin/login/login.php:
|
5163 |
msgid "Login Security Off"
|
5164 |
msgstr ""
|
5165 |
|
5166 |
-
#: admin/login/login.php:
|
5167 |
msgid "Login Security Off|Use Password Reset Option ONLY"
|
5168 |
msgstr ""
|
5169 |
|
5170 |
-
#: admin/login/login.php:
|
5171 |
msgid "Logging Options:"
|
5172 |
msgstr ""
|
5173 |
|
5174 |
-
#: admin/login/login.php:
|
5175 |
msgid "Log Only Account Lockouts"
|
5176 |
msgstr ""
|
5177 |
|
5178 |
-
#: admin/login/login.php:
|
5179 |
msgid "Log All Account Logins"
|
5180 |
msgstr ""
|
5181 |
|
5182 |
-
#: admin/login/login.php:
|
5183 |
msgid "Error Messages:"
|
5184 |
msgstr ""
|
5185 |
|
5186 |
-
#: admin/login/login.php:
|
5187 |
msgid "Standard WP Login Errors"
|
5188 |
msgstr ""
|
5189 |
|
5190 |
-
#: admin/login/login.php:
|
5191 |
msgid "User|Pass Invalid Entry Error"
|
5192 |
msgstr ""
|
5193 |
|
5194 |
-
#: admin/login/login.php:
|
5195 |
msgid "User|Pass|Lock Invalid Entry Error"
|
5196 |
msgstr ""
|
5197 |
|
5198 |
-
#: admin/login/login.php:
|
5199 |
msgid "Attempts Remaining:"
|
5200 |
msgstr ""
|
5201 |
|
5202 |
-
#: admin/login/login.php:
|
5203 |
msgid "Show Login Attempts Remaining"
|
5204 |
msgstr ""
|
5205 |
|
5206 |
-
#: admin/login/login.php:
|
5207 |
msgid "Do Not Show Login Attempts Remaining"
|
5208 |
msgstr ""
|
5209 |
|
5210 |
-
#: admin/login/login.php:
|
5211 |
msgid "Password Reset:"
|
5212 |
msgstr ""
|
5213 |
|
5214 |
-
#: admin/login/login.php:
|
5215 |
msgid "Enable Password Reset"
|
5216 |
msgstr ""
|
5217 |
|
5218 |
-
#: admin/login/login.php:
|
5219 |
msgid "Disable Password Reset Frontend Only"
|
5220 |
msgstr ""
|
5221 |
|
5222 |
-
#: admin/login/login.php:
|
5223 |
msgid "Disable Password Reset Frontend & Backend"
|
5224 |
msgstr ""
|
5225 |
|
5226 |
-
#: admin/login/login.php:
|
5227 |
msgid "Sort DB Rows:"
|
5228 |
msgstr ""
|
5229 |
|
5230 |
-
#: admin/login/login.php:
|
5231 |
msgid "Ascending - Show Oldest Login First"
|
5232 |
msgstr ""
|
5233 |
|
5234 |
-
#: admin/login/login.php:
|
5235 |
msgid "Descending - Show Newest Login First"
|
5236 |
msgstr ""
|
5237 |
|
5238 |
-
#: admin/login/login.php:
|
5239 |
msgid ""
|
5240 |
"Clicking OK will Export (copy) the Login Security Table into the lsm-master."
|
5241 |
"csv file, which you can then download to your computer by clicking the "
|
@@ -5243,85 +5232,85 @@ msgid ""
|
|
5243 |
"success message."
|
5244 |
msgstr ""
|
5245 |
|
5246 |
-
#: admin/login/login.php:
|
5247 |
msgid "Click OK to Export the Login Security Table or click Cancel."
|
5248 |
msgstr ""
|
5249 |
|
5250 |
-
#: admin/login/login.php:
|
5251 |
msgid " out of "
|
5252 |
msgstr ""
|
5253 |
|
5254 |
-
#: admin/login/login.php:
|
5255 |
msgid " Database Rows are currently being displayed"
|
5256 |
msgstr ""
|
5257 |
|
5258 |
-
#: admin/login/login.php:
|
5259 |
msgid "Total number of Database Rows is: "
|
5260 |
msgstr ""
|
5261 |
|
5262 |
-
#: admin/login/login.php:
|
5263 |
msgid "Login Status"
|
5264 |
msgstr ""
|
5265 |
|
5266 |
-
#: admin/login/login.php:
|
5267 |
-
#: admin/login/login.php:
|
5268 |
msgid "Lock"
|
5269 |
msgstr ""
|
5270 |
|
5271 |
-
#: admin/login/login.php:
|
5272 |
-
#: admin/login/login.php:
|
5273 |
msgid "Unlock"
|
5274 |
msgstr ""
|
5275 |
|
5276 |
-
#: admin/login/login.php:
|
5277 |
msgid "User ID"
|
5278 |
msgstr ""
|
5279 |
|
5280 |
-
#: admin/login/login.php:
|
5281 |
msgid "Username"
|
5282 |
msgstr ""
|
5283 |
|
5284 |
-
#: admin/login/login.php:
|
5285 |
msgid "Display Name"
|
5286 |
msgstr ""
|
5287 |
|
5288 |
-
#: admin/login/login.php:
|
5289 |
msgid "Email"
|
5290 |
msgstr ""
|
5291 |
|
5292 |
-
#: admin/login/login.php:
|
5293 |
msgid "Role"
|
5294 |
msgstr ""
|
5295 |
|
5296 |
-
#: admin/login/login.php:
|
5297 |
msgid "Login Time"
|
5298 |
msgstr ""
|
5299 |
|
5300 |
-
#: admin/login/login.php:
|
5301 |
msgid "Lockout Expires"
|
5302 |
msgstr ""
|
5303 |
|
5304 |
-
#: admin/login/login.php:
|
5305 |
msgid "IP Address"
|
5306 |
msgstr ""
|
5307 |
|
5308 |
-
#: admin/login/login.php:
|
5309 |
msgid "Hostname"
|
5310 |
msgstr ""
|
5311 |
|
5312 |
-
#: admin/login/login.php:
|
5313 |
msgid "Request URI"
|
5314 |
msgstr ""
|
5315 |
|
5316 |
-
#: admin/login/login.php:
|
5317 |
msgid "NA"
|
5318 |
msgstr ""
|
5319 |
|
5320 |
-
#: admin/login/login.php:
|
5321 |
msgid "No Logins|Locked"
|
5322 |
msgstr ""
|
5323 |
|
5324 |
-
#: admin/login/login.php:
|
5325 |
msgid ""
|
5326 |
"Locking and Unlocking a User is reversible, but Deleting a User is not.\\n"
|
5327 |
"\\n-------------------------------------------------------------\\n\\nWhen "
|
@@ -5334,203 +5323,203 @@ msgid ""
|
|
5334 |
"OK to proceed or click Cancel"
|
5335 |
msgstr ""
|
5336 |
|
5337 |
-
#: admin/login/login.php:
|
5338 |
-
#: admin/mscan/mscan.php:
|
5339 |
msgid "Clear|Refresh"
|
5340 |
msgstr ""
|
5341 |
|
5342 |
-
#: admin/login/login.php:
|
5343 |
msgid ""
|
5344 |
"The Setup Wizard Go Daddy \"Managed WordPress Hosting\" option is set to Yes."
|
5345 |
msgstr ""
|
5346 |
|
5347 |
-
#: admin/login/login.php:
|
5348 |
msgid ""
|
5349 |
"If you do not have Go Daddy \"Managed WordPress Hosting\" then change the Go "
|
5350 |
"Daddy \"Managed WordPress Hosting\" Setup Wizard option to No."
|
5351 |
msgstr ""
|
5352 |
|
5353 |
-
#: admin/login/login.php:
|
5354 |
-
#: admin/login/login.php:
|
5355 |
msgid "Save Options"
|
5356 |
msgstr ""
|
5357 |
|
5358 |
-
#: admin/login/login.php:
|
5359 |
msgid ""
|
5360 |
"Error: Sorry, JavaScript is not allowed in the JTC-Lite text boxes. Only "
|
5361 |
"HTML, CSS and regular text are allowed."
|
5362 |
msgstr ""
|
5363 |
|
5364 |
-
#: admin/login/login.php:
|
5365 |
msgid "JavaScript Matches:"
|
5366 |
msgstr ""
|
5367 |
|
5368 |
-
#: admin/login/login.php:
|
5369 |
msgid "JTC-Lite Settings Saved."
|
5370 |
msgstr ""
|
5371 |
|
5372 |
-
#: admin/login/login.php:
|
5373 |
msgid "JTC CAPTCHA:"
|
5374 |
msgstr ""
|
5375 |
|
5376 |
-
#: admin/login/login.php:
|
5377 |
msgid "jtc"
|
5378 |
msgstr ""
|
5379 |
|
5380 |
-
#: admin/login/login.php:
|
5381 |
msgid "JTC ToolTip:"
|
5382 |
msgstr ""
|
5383 |
|
5384 |
-
#: admin/login/login.php:
|
5385 |
msgid "Type/Enter: jtc. Enter a blank space for no text (Spacebar Key)"
|
5386 |
msgstr ""
|
5387 |
|
5388 |
-
#: admin/login/login.php:
|
5389 |
msgid "JTC Title|Text:"
|
5390 |
msgstr ""
|
5391 |
|
5392 |
-
#: admin/login/login.php:
|
5393 |
msgid " Bold"
|
5394 |
msgstr ""
|
5395 |
|
5396 |
-
#: admin/login/login.php:
|
5397 |
msgid "JTC Title|Text After:"
|
5398 |
msgstr ""
|
5399 |
|
5400 |
-
#: admin/login/login.php:
|
5401 |
msgid "Example: "
|
5402 |
msgstr ""
|
5403 |
|
5404 |
-
#: admin/login/login.php:
|
5405 |
msgid "Required *"
|
5406 |
msgstr ""
|
5407 |
|
5408 |
-
#: admin/login/login.php:
|
5409 |
msgid " or just: "
|
5410 |
msgstr ""
|
5411 |
|
5412 |
-
#: admin/login/login.php:
|
5413 |
msgid "*"
|
5414 |
msgstr ""
|
5415 |
|
5416 |
-
#: admin/login/login.php:
|
5417 |
msgid "JTC Logging:"
|
5418 |
msgstr ""
|
5419 |
|
5420 |
-
#: admin/login/login.php:
|
5421 |
msgid "JTC Logging Off"
|
5422 |
msgstr ""
|
5423 |
|
5424 |
-
#: admin/login/login.php:
|
5425 |
msgid "Logged in the Security Log (BPS Pro Only)"
|
5426 |
msgstr ""
|
5427 |
|
5428 |
-
#: admin/login/login.php:
|
5429 |
msgid " Enable JTC for WooCommerce (BPS Pro Only)"
|
5430 |
msgstr ""
|
5431 |
|
5432 |
-
#: admin/login/login.php:
|
5433 |
msgid "Enable|Disable JTC For These Forms: "
|
5434 |
msgstr ""
|
5435 |
|
5436 |
-
#: admin/login/login.php:
|
5437 |
msgid "Check to Enable. Uncheck to Disable."
|
5438 |
msgstr ""
|
5439 |
|
5440 |
-
#: admin/login/login.php:
|
5441 |
msgid " Login Form"
|
5442 |
msgstr ""
|
5443 |
|
5444 |
-
#: admin/login/login.php:
|
5445 |
msgid " Register Form (BPS Pro Only)"
|
5446 |
msgstr ""
|
5447 |
|
5448 |
-
#: admin/login/login.php:
|
5449 |
msgid " Lost Password Form (BPS Pro Only)"
|
5450 |
msgstr ""
|
5451 |
|
5452 |
-
#: admin/login/login.php:
|
5453 |
msgid " Comment Form (BPS Pro Only)"
|
5454 |
msgstr ""
|
5455 |
|
5456 |
-
#: admin/login/login.php:
|
5457 |
msgid " Multisite Register Form (BPS Pro Only)"
|
5458 |
msgstr ""
|
5459 |
|
5460 |
-
#: admin/login/login.php:
|
5461 |
msgid " BuddyPress Register Form (BPS Pro Only)"
|
5462 |
msgstr ""
|
5463 |
|
5464 |
-
#: admin/login/login.php:
|
5465 |
msgid " BuddyPress Sidebar Login Form (BPS Pro Only)"
|
5466 |
msgstr ""
|
5467 |
|
5468 |
-
#: admin/login/login.php:
|
5469 |
msgid "Comment Form: (BPS Pro Only)"
|
5470 |
msgstr ""
|
5471 |
|
5472 |
-
#: admin/login/login.php:
|
5473 |
msgid ""
|
5474 |
"Enable|Disable JTC For These Registered/Logged In User Roles (BPS Pro Only): "
|
5475 |
msgstr ""
|
5476 |
|
5477 |
-
#: admin/login/login.php:
|
5478 |
-
#: admin/login/login.php:
|
5479 |
msgid " Administrator"
|
5480 |
msgstr ""
|
5481 |
|
5482 |
-
#: admin/login/login.php:
|
5483 |
-
#: admin/login/login.php:
|
5484 |
msgid " Editor"
|
5485 |
msgstr ""
|
5486 |
|
5487 |
-
#: admin/login/login.php:
|
5488 |
-
#: admin/login/login.php:
|
5489 |
msgid " Author"
|
5490 |
msgstr ""
|
5491 |
|
5492 |
-
#: admin/login/login.php:
|
5493 |
-
#: admin/login/login.php:
|
5494 |
msgid " Contributor"
|
5495 |
msgstr ""
|
5496 |
|
5497 |
-
#: admin/login/login.php:
|
5498 |
-
#: admin/login/login.php:
|
5499 |
msgid " Subscriber"
|
5500 |
msgstr ""
|
5501 |
|
5502 |
-
#: admin/login/login.php:
|
5503 |
msgid "Login Form: CAPTCHA Error message"
|
5504 |
msgstr ""
|
5505 |
|
5506 |
-
#: admin/login/login.php:
|
5507 |
msgid "Comment Form: CAPTCHA Error message (BPS Pro Only)"
|
5508 |
msgstr ""
|
5509 |
|
5510 |
-
#: admin/login/login.php:
|
5511 |
msgid "Comment Form: CSS Styling (BPS Pro Only)"
|
5512 |
msgstr ""
|
5513 |
|
5514 |
-
#: admin/login/login.php:
|
5515 |
msgid ""
|
5516 |
"Comment Form Label (BPS Pro Only): <i>The JTC Title|Text above the Form "
|
5517 |
"Input text box</i>"
|
5518 |
msgstr ""
|
5519 |
|
5520 |
-
#: admin/login/login.php:
|
5521 |
msgid ""
|
5522 |
"Comment Form Input Text Box (BPS Pro Only): <i>The JTC CAPTCHA Form Input "
|
5523 |
"text box</i>"
|
5524 |
msgstr ""
|
5525 |
|
5526 |
-
#: admin/login/login.php:
|
5527 |
msgid ""
|
5528 |
"If you see an error or are unable to save your JTC option settings then "
|
5529 |
"click the Encrypt JTC Code button first and then click the Save Options "
|
5530 |
"button. Mouse over the question mark image to the right for help info."
|
5531 |
msgstr ""
|
5532 |
|
5533 |
-
#: admin/login/login.php:
|
5534 |
msgid ""
|
5535 |
"If your web host currently has ModSecurity installed or installs ModSecurity "
|
5536 |
"at a later time then ModSecurity will prevent you from saving your JTC "
|
@@ -5538,132 +5527,132 @@ msgid ""
|
|
5538 |
"Encrypt JTC Code button."
|
5539 |
msgstr ""
|
5540 |
|
5541 |
-
#: admin/login/login.php:
|
5542 |
msgid ""
|
5543 |
"If you click the Encrypt JTC Code button and then want to edit your CSS code "
|
5544 |
"again click the Decrypt JTC Code button. After you are done editing click "
|
5545 |
"the Encrypt JTC Code button before clicking the Save Options button."
|
5546 |
msgstr ""
|
5547 |
|
5548 |
-
#: admin/login/login.php:
|
5549 |
msgid ""
|
5550 |
"Click the JTC Anti-Spam|Anti-Hacker Question Mark help button for more help "
|
5551 |
"info."
|
5552 |
msgstr ""
|
5553 |
|
5554 |
-
#: admin/login/login.php:
|
5555 |
-
#: admin/login/login.php:
|
5556 |
-
#: admin/security-log/security-log.php:
|
5557 |
msgid "Click OK to Proceed or click Cancel."
|
5558 |
msgstr ""
|
5559 |
|
5560 |
-
#: admin/login/login.php:
|
5561 |
msgid "ISL and ACE Forum Topic"
|
5562 |
msgstr ""
|
5563 |
|
5564 |
-
#: admin/login/login.php:
|
5565 |
msgid "The Help & FAQ tab pages contain help links."
|
5566 |
msgstr ""
|
5567 |
|
5568 |
-
#: admin/login/login.php:
|
5569 |
msgid "Settings Saved. ISL has been turned On."
|
5570 |
msgstr ""
|
5571 |
|
5572 |
-
#: admin/login/login.php:
|
5573 |
msgid "Settings Saved. ISL has been turned Off."
|
5574 |
msgstr ""
|
5575 |
|
5576 |
-
#: admin/login/login.php:
|
5577 |
msgid "Idle Session Logout (ISL) Settings"
|
5578 |
msgstr ""
|
5579 |
|
5580 |
-
#: admin/login/login.php:
|
5581 |
msgid "ISL Off"
|
5582 |
msgstr ""
|
5583 |
|
5584 |
-
#: admin/login/login.php:
|
5585 |
msgid "ISL On"
|
5586 |
msgstr ""
|
5587 |
|
5588 |
-
#: admin/login/login.php:
|
5589 |
msgid "Idle Session Logout Time in Minutes:"
|
5590 |
msgstr ""
|
5591 |
|
5592 |
-
#: admin/login/login.php:
|
5593 |
msgid "Idle Session Logout Page URL:"
|
5594 |
msgstr ""
|
5595 |
|
5596 |
-
#: admin/login/login.php:
|
5597 |
msgid "Idle Session Logout Page Login URL:"
|
5598 |
msgstr ""
|
5599 |
|
5600 |
-
#: admin/login/login.php:
|
5601 |
msgid ""
|
5602 |
"Enter/Type: \"No\" (without quotes) if you do not want a Login URL displayed."
|
5603 |
msgstr ""
|
5604 |
|
5605 |
-
#: admin/login/login.php:
|
5606 |
msgid "Idle Session Logout Exclude URLs|URIs:"
|
5607 |
msgstr ""
|
5608 |
|
5609 |
-
#: admin/login/login.php:
|
5610 |
msgid "Enter URIs separated by a comma and a space: /some-post/, /some-page/"
|
5611 |
msgstr ""
|
5612 |
|
5613 |
-
#: admin/login/login.php:
|
5614 |
msgid "Idle Session Logout Page Custom Message:"
|
5615 |
msgstr ""
|
5616 |
|
5617 |
-
#: admin/login/login.php:
|
5618 |
msgid "Idle Session Logout Page Custom CSS Style:"
|
5619 |
msgstr ""
|
5620 |
|
5621 |
-
#: admin/login/login.php:
|
5622 |
#: admin/login/lsm-help-text.php:29
|
5623 |
msgid "User Account Exceptions:"
|
5624 |
msgstr ""
|
5625 |
|
5626 |
-
#: admin/login/login.php:
|
5627 |
msgid ""
|
5628 |
"Enter User Account names separated by a comma and a space: johnDoe, janeDoe"
|
5629 |
msgstr ""
|
5630 |
|
5631 |
-
#: admin/login/login.php:
|
5632 |
msgid "Idle Session Logout Time Will Not Be Applied For These User Accounts."
|
5633 |
msgstr ""
|
5634 |
|
5635 |
-
#: admin/login/login.php:
|
5636 |
msgid "Enable|Disable Idle Session Logouts For These User Roles: "
|
5637 |
msgstr ""
|
5638 |
|
5639 |
-
#: admin/login/login.php:
|
5640 |
msgid ""
|
5641 |
"Check to Enable. Uncheck to Disable. See the Question Mark help button for "
|
5642 |
"details."
|
5643 |
msgstr ""
|
5644 |
|
5645 |
-
#: admin/login/login.php:
|
5646 |
msgid "Enable|Disable Idle Session Logouts For TinyMCE Editors: "
|
5647 |
msgstr ""
|
5648 |
|
5649 |
-
#: admin/login/login.php:
|
5650 |
msgid ""
|
5651 |
"Check to Disable. Uncheck to Enable. See the Question Mark help button for "
|
5652 |
"details."
|
5653 |
msgstr ""
|
5654 |
|
5655 |
-
#: admin/login/login.php:
|
5656 |
msgid " Enable|Disable ISL For TinyMCE Editor"
|
5657 |
msgstr ""
|
5658 |
|
5659 |
-
#: admin/login/login.php:
|
5660 |
msgid ""
|
5661 |
"If you see an error or are unable to save your ISL option settings then "
|
5662 |
"click the Encrypt ISL Code button first and then click the Save Options "
|
5663 |
"button. Mouse over the question mark image to the right for help info."
|
5664 |
msgstr ""
|
5665 |
|
5666 |
-
#: admin/login/login.php:
|
5667 |
msgid ""
|
5668 |
"If your web host currently has ModSecurity installed or installs ModSecurity "
|
5669 |
"at a later time then ModSecurity will prevent you from saving your ISL "
|
@@ -5671,124 +5660,124 @@ msgid ""
|
|
5671 |
"Encrypt ISL Code button."
|
5672 |
msgstr ""
|
5673 |
|
5674 |
-
#: admin/login/login.php:
|
5675 |
msgid ""
|
5676 |
"If you click the Encrypt ISL Code button and then want to edit your CSS code "
|
5677 |
"again click the Decrypt ISL Code button. After you are done editing click "
|
5678 |
"the Encrypt ISL Code button before clicking the Save Options button."
|
5679 |
msgstr ""
|
5680 |
|
5681 |
-
#: admin/login/login.php:
|
5682 |
msgid ""
|
5683 |
"Click the Idle Session Logout|Auth Cookie Expiration Question Mark help "
|
5684 |
"button for more help info."
|
5685 |
msgstr ""
|
5686 |
|
5687 |
-
#: admin/login/login.php:
|
5688 |
msgid "WordPress Authentication Cookie Expiration (ACE) Settings"
|
5689 |
msgstr ""
|
5690 |
|
5691 |
-
#: admin/login/login.php:
|
5692 |
msgid "Settings Saved. ACE has been turned On."
|
5693 |
msgstr ""
|
5694 |
|
5695 |
-
#: admin/login/login.php:
|
5696 |
msgid "Settings Saved. ACE has been turned Off."
|
5697 |
msgstr ""
|
5698 |
|
5699 |
-
#: admin/login/login.php:
|
5700 |
msgid "ACE Off"
|
5701 |
msgstr ""
|
5702 |
|
5703 |
-
#: admin/login/login.php:
|
5704 |
msgid "ACE On"
|
5705 |
msgstr ""
|
5706 |
|
5707 |
-
#: admin/login/login.php:
|
5708 |
msgid "Auth Cookie Expiration Time in Minutes:"
|
5709 |
msgstr ""
|
5710 |
|
5711 |
-
#: admin/login/login.php:
|
5712 |
msgid "WP Default setting is 2880 Minutes/2 Days:"
|
5713 |
msgstr ""
|
5714 |
|
5715 |
-
#: admin/login/login.php:
|
5716 |
msgid "Remember Me Auth Cookie Expiration Time in Minutes:"
|
5717 |
msgstr ""
|
5718 |
|
5719 |
-
#: admin/login/login.php:
|
5720 |
msgid "WP Default setting is 20160 Minutes/14 Days:"
|
5721 |
msgstr ""
|
5722 |
|
5723 |
-
#: admin/login/login.php:
|
5724 |
msgid "Enable|Disable Remember Me Checkbox:"
|
5725 |
msgstr ""
|
5726 |
|
5727 |
-
#: admin/login/login.php:
|
5728 |
msgid " Disable & do not display the Remember Me checkbox"
|
5729 |
msgstr ""
|
5730 |
|
5731 |
-
#: admin/login/login.php:
|
5732 |
msgid "Auth Cookie Expiration Time Will Not Be Applied To These User Accounts."
|
5733 |
msgstr ""
|
5734 |
|
5735 |
-
#: admin/login/login.php:
|
5736 |
msgid "Enable|Disable Auth Cookie Expiration Time For These User Roles: "
|
5737 |
msgstr ""
|
5738 |
|
5739 |
-
#: admin/login/login.php:
|
5740 |
msgid "Settings Saved. FSP is turned On."
|
5741 |
msgstr ""
|
5742 |
|
5743 |
-
#: admin/login/login.php:
|
5744 |
msgid "Settings Saved. FSP is turned Off."
|
5745 |
msgstr ""
|
5746 |
|
5747 |
-
#: admin/login/login.php:
|
5748 |
msgid "Turn FSP On|Turn FSP Off:"
|
5749 |
msgstr ""
|
5750 |
|
5751 |
-
#: admin/login/login.php:
|
5752 |
msgid "FSP Off"
|
5753 |
msgstr ""
|
5754 |
|
5755 |
-
#: admin/login/login.php:
|
5756 |
msgid "FSP On"
|
5757 |
msgstr ""
|
5758 |
|
5759 |
-
#: admin/login/login.php:
|
5760 |
msgid "Password Character Length:"
|
5761 |
msgstr ""
|
5762 |
|
5763 |
-
#: admin/login/login.php:
|
5764 |
msgid "Example: 12"
|
5765 |
msgstr ""
|
5766 |
|
5767 |
-
#: admin/login/login.php:
|
5768 |
msgid "Password Criteria Requirements: "
|
5769 |
msgstr ""
|
5770 |
|
5771 |
-
#: admin/login/login.php:
|
5772 |
msgid "Check to require. Uncheck to remove requirement."
|
5773 |
msgstr ""
|
5774 |
|
5775 |
-
#: admin/login/login.php:
|
5776 |
msgid " At least 1 lowercase letter"
|
5777 |
msgstr ""
|
5778 |
|
5779 |
-
#: admin/login/login.php:
|
5780 |
msgid " At least 1 uppercase letter"
|
5781 |
msgstr ""
|
5782 |
|
5783 |
-
#: admin/login/login.php:
|
5784 |
msgid " At least 1 number"
|
5785 |
msgstr ""
|
5786 |
|
5787 |
-
#: admin/login/login.php:
|
5788 |
msgid " At least 1 special character"
|
5789 |
msgstr ""
|
5790 |
|
5791 |
-
#: admin/login/login.php:
|
5792 |
msgid "Displayed Message/Error Message:"
|
5793 |
msgstr ""
|
5794 |
|
@@ -5981,7 +5970,7 @@ msgid ""
|
|
5981 |
"be displayed. "
|
5982 |
msgstr ""
|
5983 |
|
5984 |
-
#: admin/login/lsm-help-text.php:10 admin/maintenance/maintenance.php:
|
5985 |
#: includes/hud-dismiss-functions.php:358
|
5986 |
#: includes/hud-dismiss-functions.php:402
|
5987 |
msgid "CAUTION: "
|
@@ -6706,11 +6695,11 @@ msgid ""
|
|
6706 |
"Forms/pages or use the existing default FSP message."
|
6707 |
msgstr ""
|
6708 |
|
6709 |
-
#: admin/maintenance/maintenance.php:
|
6710 |
msgid "Maintenance Mode Guide"
|
6711 |
msgstr ""
|
6712 |
|
6713 |
-
#: admin/maintenance/maintenance.php:
|
6714 |
msgid ""
|
6715 |
"Create/add whatever messages, images, videos, etc. you want to display to "
|
6716 |
"website visitors with the MMode Editor, select your MMode options/settings, "
|
@@ -6719,20 +6708,20 @@ msgid ""
|
|
6719 |
"options/settings."
|
6720 |
msgstr ""
|
6721 |
|
6722 |
-
#: admin/maintenance/maintenance.php:
|
6723 |
msgid ""
|
6724 |
"For more extensive help info, CSS, HTML code examples, Image & Video "
|
6725 |
"embedding code examples to add in the MMode Editor see Forum Help Links at "
|
6726 |
"the top of this Question Mark help window."
|
6727 |
msgstr ""
|
6728 |
|
6729 |
-
#: admin/maintenance/maintenance.php:
|
6730 |
msgid ""
|
6731 |
"Maintenance Mode Text, CSS Style Code, Images, Videos Displayed To Website "
|
6732 |
"Visitors:"
|
6733 |
msgstr ""
|
6734 |
|
6735 |
-
#: admin/maintenance/maintenance.php:
|
6736 |
msgid ""
|
6737 |
"This is a standard WordPress TinyMCE WYSIWYG editor that has a Visual Editor "
|
6738 |
"and a Text Editor for adding CSS or HTML code. Enter plain text, CSS, HTML "
|
@@ -6744,11 +6733,11 @@ msgid ""
|
|
6744 |
"Save Options button to save your edits."
|
6745 |
msgstr ""
|
6746 |
|
6747 |
-
#: admin/maintenance/maintenance.php:
|
6748 |
msgid "Enable Countdown Timer:"
|
6749 |
msgstr ""
|
6750 |
|
6751 |
-
#: admin/maintenance/maintenance.php:
|
6752 |
msgid ""
|
6753 |
"Check this checkbox to enable a javascript Countdown Timer that will be "
|
6754 |
"displayed to visitors. When the Countdown Timer reaches 0/has completed your "
|
@@ -6757,42 +6746,42 @@ msgid ""
|
|
6757 |
"off Maintenance Mode when the Countdown Timer reaches 0/has completed."
|
6758 |
msgstr ""
|
6759 |
|
6760 |
-
#: admin/maintenance/maintenance.php:
|
6761 |
msgid "Countdown Timer Text Color:"
|
6762 |
msgstr ""
|
6763 |
|
6764 |
-
#: admin/maintenance/maintenance.php:
|
6765 |
msgid "Select the text color for the Countdown Timer."
|
6766 |
msgstr ""
|
6767 |
|
6768 |
-
#: admin/maintenance/maintenance.php:
|
6769 |
msgid "Maintenance Mode Time (in Minutes):"
|
6770 |
msgstr ""
|
6771 |
|
6772 |
-
#: admin/maintenance/maintenance.php:
|
6773 |
msgid ""
|
6774 |
"Enter the amount of time that you want to put your site into Maintenance "
|
6775 |
"Mode in minutes. Example: 10 = 10 minutes, 180 = 3 hours, 1440 = 24 hours, "
|
6776 |
"4320 = 3 days."
|
6777 |
msgstr ""
|
6778 |
|
6779 |
-
#: admin/maintenance/maintenance.php:
|
6780 |
msgid ""
|
6781 |
"Header Retry-After (enter the same time as Maintenance Mode Time above):"
|
6782 |
msgstr ""
|
6783 |
|
6784 |
-
#: admin/maintenance/maintenance.php:
|
6785 |
msgid ""
|
6786 |
"This is the amount of time that you are telling Search Engines to wait "
|
6787 |
"before visiting your website again. Enter the same time in minutes that you "
|
6788 |
"entered for Maintenance Mode Time."
|
6789 |
msgstr ""
|
6790 |
|
6791 |
-
#: admin/maintenance/maintenance.php:
|
6792 |
msgid "Enable FrontEnd Maintenance Mode:"
|
6793 |
msgstr ""
|
6794 |
|
6795 |
-
#: admin/maintenance/maintenance.php:
|
6796 |
msgid ""
|
6797 |
"Check this checkbox to enable FrontEnd Maintenance Mode. When you Turn On "
|
6798 |
"FrontEnd Maintenance Mode your website Maintenance Mode page will be "
|
@@ -6803,11 +6792,11 @@ msgid ""
|
|
6803 |
"be locked out of your WordPress Dashboard."
|
6804 |
msgstr ""
|
6805 |
|
6806 |
-
#: admin/maintenance/maintenance.php:
|
6807 |
msgid "Enable BackEnd Maintenance Mode:"
|
6808 |
msgstr ""
|
6809 |
|
6810 |
-
#: admin/maintenance/maintenance.php:
|
6811 |
msgid ""
|
6812 |
"Check this checkbox to enable BackEnd Maintenance Mode. Be sure to enter the "
|
6813 |
"Your IP address/the Recommended IP address in the Maintenance Mode IP "
|
@@ -6819,17 +6808,17 @@ msgid ""
|
|
6819 |
"your WordPress Dashboard."
|
6820 |
msgstr ""
|
6821 |
|
6822 |
-
#: admin/maintenance/maintenance.php:
|
6823 |
msgid "Maintenance Mode IP Address Whitelist Text Box:"
|
6824 |
msgstr ""
|
6825 |
|
6826 |
-
#: admin/maintenance/maintenance.php:
|
6827 |
msgid ""
|
6828 |
"Enter The IP Address That Can View The Website Normally (not in Maintenance "
|
6829 |
"Mode):"
|
6830 |
msgstr ""
|
6831 |
|
6832 |
-
#: admin/maintenance/maintenance.php:
|
6833 |
msgid ""
|
6834 |
"Enter Multiple IP addresses separated by a comma and a single space. "
|
6835 |
"Example: 100.99.88.77, 200.66.55.44, 44.33.22.1 It is recommended that you "
|
@@ -6841,83 +6830,83 @@ msgid ""
|
|
6841 |
"octets or your current IP address to whitelist your IP address."
|
6842 |
msgstr ""
|
6843 |
|
6844 |
-
#: admin/maintenance/maintenance.php:
|
6845 |
msgid "Background Images:"
|
6846 |
msgstr ""
|
6847 |
|
6848 |
-
#: admin/maintenance/maintenance.php:
|
6849 |
msgid ""
|
6850 |
"Select a background image that you want to use. BPS includes 20 background "
|
6851 |
"images and 15 center images (text box images) that you can mix and match to "
|
6852 |
"your design/color scheme preference."
|
6853 |
msgstr ""
|
6854 |
|
6855 |
-
#: admin/maintenance/maintenance.php:
|
6856 |
msgid "Center Images:"
|
6857 |
msgstr ""
|
6858 |
|
6859 |
-
#: admin/maintenance/maintenance.php:
|
6860 |
msgid ""
|
6861 |
"Select a center image that you want to use. BPS includes 20 background "
|
6862 |
"images and 15 center images (text box images) that you can mix and match to "
|
6863 |
"your design/color scheme preference."
|
6864 |
msgstr ""
|
6865 |
|
6866 |
-
#: admin/maintenance/maintenance.php:
|
6867 |
msgid "Background Colors (If not using a Background Image):"
|
6868 |
msgstr ""
|
6869 |
|
6870 |
-
#: admin/maintenance/maintenance.php:
|
6871 |
msgid ""
|
6872 |
"Select a background color that you want to use. If you do not want to use a "
|
6873 |
"background image then you can instead choose a background color."
|
6874 |
msgstr ""
|
6875 |
|
6876 |
-
#: admin/maintenance/maintenance.php:
|
6877 |
msgid "Display Visitor IP Address:"
|
6878 |
msgstr ""
|
6879 |
|
6880 |
-
#: admin/maintenance/maintenance.php:
|
6881 |
msgid "Check this checkbox to display the website visitor's IP addresses."
|
6882 |
msgstr ""
|
6883 |
|
6884 |
-
#: admin/maintenance/maintenance.php:
|
6885 |
msgid "Display Admin|Login Link"
|
6886 |
msgstr ""
|
6887 |
|
6888 |
-
#: admin/maintenance/maintenance.php:
|
6889 |
msgid ""
|
6890 |
"Check this checkbox to display a Login link that points to your wp-admin "
|
6891 |
"folder/Login page."
|
6892 |
msgstr ""
|
6893 |
|
6894 |
-
#: admin/maintenance/maintenance.php:
|
6895 |
msgid "Display Dashboard Reminder Message when site is in Maintenance Mode:"
|
6896 |
msgstr ""
|
6897 |
|
6898 |
-
#: admin/maintenance/maintenance.php:
|
6899 |
msgid ""
|
6900 |
"Check this checkbox to display a WordPress Dashboard Reminder Notice that "
|
6901 |
"your website is in Maintenance Mode."
|
6902 |
msgstr ""
|
6903 |
|
6904 |
-
#: admin/maintenance/maintenance.php:
|
6905 |
msgid "Enable Visitor Logging:"
|
6906 |
msgstr ""
|
6907 |
|
6908 |
-
#: admin/maintenance/maintenance.php:
|
6909 |
msgid ""
|
6910 |
"Check this checkbox to enable visitor logging. Logs all visitors to your "
|
6911 |
"site while your site is in Maintenance Mode. Log entries are created in the "
|
6912 |
"BPS Security Log file. "
|
6913 |
msgstr ""
|
6914 |
|
6915 |
-
#: admin/maintenance/maintenance.php:
|
6916 |
msgid ""
|
6917 |
"Send Email Reminder when Maintenance Mode Countdown Timer has completed:"
|
6918 |
msgstr ""
|
6919 |
|
6920 |
-
#: admin/maintenance/maintenance.php:
|
6921 |
msgid ""
|
6922 |
"Check this checkbox to enable the javascript Countdown Timer to send you an "
|
6923 |
"email reminder when the Countdown Timer reaches 0/is completed. More "
|
@@ -6929,11 +6918,11 @@ msgid ""
|
|
6929 |
"the Countdown Timer reaches 0/has completed."
|
6930 |
msgstr ""
|
6931 |
|
6932 |
-
#: admin/maintenance/maintenance.php:
|
6933 |
msgid "Testing the Countdown Timer Send Email Option:"
|
6934 |
msgstr ""
|
6935 |
|
6936 |
-
#: admin/maintenance/maintenance.php:
|
6937 |
msgid ""
|
6938 |
"There is a 1 minute buffer so that when the Maintenance Mode page is created "
|
6939 |
"an email will not be sent immediately. To test the Send Email option use 2 "
|
@@ -6944,21 +6933,21 @@ msgid ""
|
|
6944 |
"how fast your Mail Server sends the email to you."
|
6945 |
msgstr ""
|
6946 |
|
6947 |
-
#: admin/maintenance/maintenance.php:
|
6948 |
msgid "Send Countdown Timer Email:"
|
6949 |
msgstr ""
|
6950 |
|
6951 |
-
#: admin/maintenance/maintenance.php:
|
6952 |
msgid ""
|
6953 |
"Enter the email addresses that you would like the Countdown Timer reminder "
|
6954 |
"email sent to, from, cc or bcc."
|
6955 |
msgstr ""
|
6956 |
|
6957 |
-
#: admin/maintenance/maintenance.php:
|
6958 |
msgid "Network/Multisite Primary Site Options ONLY:"
|
6959 |
msgstr ""
|
6960 |
|
6961 |
-
#: admin/maintenance/maintenance.php:
|
6962 |
msgid ""
|
6963 |
"These options/settings are for Network/Multisite ONLY and are ONLY displayed "
|
6964 |
"on the Primary Network/Multisite site. Checking these options on a Single/"
|
@@ -6966,11 +6955,11 @@ msgid ""
|
|
6966 |
"for Network/Multisite WordPress installations."
|
6967 |
msgstr ""
|
6968 |
|
6969 |
-
#: admin/maintenance/maintenance.php:
|
6970 |
msgid "Steps to use these special Network/Multisite options:"
|
6971 |
msgstr ""
|
6972 |
|
6973 |
-
#: admin/maintenance/maintenance.php:
|
6974 |
msgid ""
|
6975 |
"To turn On either of these special options, check the checkbox, click the "
|
6976 |
"Save Options button and click the Turn On button. To turn Off either of "
|
@@ -6982,29 +6971,29 @@ msgid ""
|
|
6982 |
"special option settings in that template file."
|
6983 |
msgstr ""
|
6984 |
|
6985 |
-
#: admin/maintenance/maintenance.php:
|
6986 |
msgid "Put The Primary Site And All Subsites In Maintenance Mode:"
|
6987 |
msgstr ""
|
6988 |
|
6989 |
-
#: admin/maintenance/maintenance.php:
|
6990 |
msgid "Check this checkbox to put all of the sites into Maintenance Mode."
|
6991 |
msgstr ""
|
6992 |
|
6993 |
-
#: admin/maintenance/maintenance.php:
|
6994 |
msgid "Put All Subsites In Maintenance Mode, But Not The Primary Site:"
|
6995 |
msgstr ""
|
6996 |
|
6997 |
-
#: admin/maintenance/maintenance.php:
|
6998 |
msgid ""
|
6999 |
"Check this checkbox to put all of the subsites into Maintenance Mode except "
|
7000 |
"for the Primary site."
|
7001 |
msgstr ""
|
7002 |
|
7003 |
-
#: admin/maintenance/maintenance.php:
|
7004 |
msgid "Save Options Button"
|
7005 |
msgstr ""
|
7006 |
|
7007 |
-
#: admin/maintenance/maintenance.php:
|
7008 |
msgid ""
|
7009 |
"Clicking the Save Options button does 2 things: Saves all your options/"
|
7010 |
"settings to your Database and creates all necessary Maintenance Mode files/"
|
@@ -7012,11 +7001,11 @@ msgid ""
|
|
7012 |
"Click the Turn On button after clicking the Save Options button."
|
7013 |
msgstr ""
|
7014 |
|
7015 |
-
#: admin/maintenance/maintenance.php:
|
7016 |
msgid "Preview Button"
|
7017 |
msgstr ""
|
7018 |
|
7019 |
-
#: admin/maintenance/maintenance.php:
|
7020 |
msgid ""
|
7021 |
"Clicking the Preview button allows you to preview the Maintenance Mode files/"
|
7022 |
"Forms that were created when you clicked the Save Options button. Preview "
|
@@ -7026,11 +7015,11 @@ msgid ""
|
|
7026 |
"On button."
|
7027 |
msgstr ""
|
7028 |
|
7029 |
-
#: admin/maintenance/maintenance.php:
|
7030 |
msgid "Turn On Button"
|
7031 |
msgstr ""
|
7032 |
|
7033 |
-
#: admin/maintenance/maintenance.php:
|
7034 |
msgid ""
|
7035 |
"Clicking the Turn On button turns On Maintenance Mode. Turn On is "
|
7036 |
"conditional and allows you to make changes to your Maintenance Mode page "
|
@@ -7040,11 +7029,11 @@ msgid ""
|
|
7040 |
"on your Maintenance Mode page."
|
7041 |
msgstr ""
|
7042 |
|
7043 |
-
#: admin/maintenance/maintenance.php:
|
7044 |
msgid "Turn Off Button"
|
7045 |
msgstr ""
|
7046 |
|
7047 |
-
#: admin/maintenance/maintenance.php:
|
7048 |
msgid ""
|
7049 |
"Clicking the Turn Off button turns Off Maintenance Mode. Turn Off is non-"
|
7050 |
"conditional and works like a Form Reset, but does not remove any of your "
|
@@ -7054,28 +7043,28 @@ msgid ""
|
|
7054 |
"remain in your website root folder, but Maintenance Mode will be turned Off."
|
7055 |
msgstr ""
|
7056 |
|
7057 |
-
#: admin/maintenance/maintenance.php:
|
7058 |
msgid "BPS help links can be found in the Help & FAQ pages."
|
7059 |
msgstr ""
|
7060 |
|
7061 |
-
#: admin/maintenance/maintenance.php:
|
7062 |
msgid ""
|
7063 |
"Error: You did not enter anything in the Maintenance Mode Time Text Box."
|
7064 |
msgstr ""
|
7065 |
|
7066 |
-
#: admin/maintenance/maintenance.php:
|
7067 |
msgid ""
|
7068 |
"Error: You did not enter an IP Address in the Maintenance Mode IP Address "
|
7069 |
"Whitelist Text Box. Only IP Addresses are allowed."
|
7070 |
msgstr ""
|
7071 |
|
7072 |
-
#: admin/maintenance/maintenance.php:
|
7073 |
msgid ""
|
7074 |
"Error: Sorry, JavaScript is not allowed in the MMode Editor. Only HTML, CSS, "
|
7075 |
"images and regular text are allowed."
|
7076 |
msgstr ""
|
7077 |
|
7078 |
-
#: admin/maintenance/maintenance.php:
|
7079 |
msgid ""
|
7080 |
"Success! Your Options have been saved and your Maintenance Mode Form has "
|
7081 |
"been created successfully! Click the Preview button to preview your Website "
|
@@ -7083,13 +7072,13 @@ msgid ""
|
|
7083 |
"button."
|
7084 |
msgstr ""
|
7085 |
|
7086 |
-
#: admin/maintenance/maintenance.php:
|
7087 |
msgid ""
|
7088 |
"Check that the file exists in the /bulletproof-security/admin/htaccess/ "
|
7089 |
"master folder. If this is not the problem "
|
7090 |
msgstr ""
|
7091 |
|
7092 |
-
#: admin/maintenance/maintenance.php:
|
7093 |
#: admin/wizard/wizard.php:105 includes/general-functions.php:509
|
7094 |
#: includes/hud-dismiss-functions.php:358
|
7095 |
#: includes/hud-dismiss-functions.php:402
|
@@ -7097,84 +7086,84 @@ msgstr ""
|
|
7097 |
msgid "Click Here"
|
7098 |
msgstr ""
|
7099 |
|
7100 |
-
#: admin/maintenance/maintenance.php:
|
7101 |
msgid " for assistance."
|
7102 |
msgstr ""
|
7103 |
|
7104 |
-
#: admin/maintenance/maintenance.php:
|
7105 |
msgid ""
|
7106 |
"Check that the bps-maintenance-values.php file exists in the /bulletproof-"
|
7107 |
"security/admin/htaccess/ master folder. If this is not the problem "
|
7108 |
msgstr ""
|
7109 |
|
7110 |
-
#: admin/maintenance/maintenance.php:
|
7111 |
-
#: admin/maintenance/maintenance.php:
|
7112 |
msgid "Your Current IP Address: "
|
7113 |
msgstr ""
|
7114 |
|
7115 |
-
#: admin/maintenance/maintenance.php:
|
7116 |
-
#: admin/maintenance/maintenance.php:
|
7117 |
msgid "Recommended IP Address: "
|
7118 |
msgstr ""
|
7119 |
|
7120 |
-
#: admin/maintenance/maintenance.php:
|
7121 |
msgid "MMode Editor"
|
7122 |
msgstr ""
|
7123 |
|
7124 |
-
#: admin/maintenance/maintenance.php:
|
7125 |
msgid ""
|
7126 |
"Click the Maintenance Mode Guide link in the Question Mark help button above "
|
7127 |
"for CSS Code, Image & Video Embed examples."
|
7128 |
msgstr ""
|
7129 |
|
7130 |
-
#: admin/maintenance/maintenance.php:
|
7131 |
msgid "MMode Option Settings"
|
7132 |
msgstr ""
|
7133 |
|
7134 |
-
#: admin/maintenance/maintenance.php:
|
7135 |
msgid "Enable Countdown Timer"
|
7136 |
msgstr ""
|
7137 |
|
7138 |
-
#: admin/maintenance/maintenance.php:
|
7139 |
msgid "LCD|Lime Green"
|
7140 |
msgstr ""
|
7141 |
|
7142 |
-
#: admin/maintenance/maintenance.php:
|
7143 |
msgid "White"
|
7144 |
msgstr ""
|
7145 |
|
7146 |
-
#: admin/maintenance/maintenance.php:
|
7147 |
msgid "Silver"
|
7148 |
msgstr ""
|
7149 |
|
7150 |
-
#: admin/maintenance/maintenance.php:
|
7151 |
msgid "Gray"
|
7152 |
msgstr ""
|
7153 |
|
7154 |
-
#: admin/maintenance/maintenance.php:
|
7155 |
msgid "Example: 10 = 10 minutes, 180 = 3 hours, 1440 = 24 hours."
|
7156 |
msgstr ""
|
7157 |
|
7158 |
-
#: admin/maintenance/maintenance.php:
|
7159 |
msgid "Header Retry-After (Enter the same time as above):"
|
7160 |
msgstr ""
|
7161 |
|
7162 |
-
#: admin/maintenance/maintenance.php:
|
7163 |
msgid "Enable FrontEnd Maintenance Mode"
|
7164 |
msgstr ""
|
7165 |
|
7166 |
-
#: admin/maintenance/maintenance.php:
|
7167 |
msgid ""
|
7168 |
"You MUST enter Your Current IP Address or the Recommended IP Address if you "
|
7169 |
"Enable BackEnd Maintenance Mode or you will be locked out of your WordPress "
|
7170 |
"Dashboard."
|
7171 |
msgstr ""
|
7172 |
|
7173 |
-
#: admin/maintenance/maintenance.php:
|
7174 |
msgid "Enable BackEnd Maintenance Mode "
|
7175 |
msgstr ""
|
7176 |
|
7177 |
-
#: admin/maintenance/maintenance.php:
|
7178 |
msgid ""
|
7179 |
"Enter The IP address or addresses that can view your website normally (not "
|
7180 |
"in Maintenance Mode).<br><br>Enter multiple IP addresses separated by a "
|
@@ -7183,217 +7172,217 @@ msgid ""
|
|
7183 |
"ffff:6463:584d, 0:0:0:0:0:ffff:c842:372c"
|
7184 |
msgstr ""
|
7185 |
|
7186 |
-
#: admin/maintenance/maintenance.php:
|
7187 |
msgid "No Background Image"
|
7188 |
msgstr ""
|
7189 |
|
7190 |
-
#: admin/maintenance/maintenance.php:
|
7191 |
msgid "Black Honeycomb Large"
|
7192 |
msgstr ""
|
7193 |
|
7194 |
-
#: admin/maintenance/maintenance.php:
|
7195 |
msgid "Black Honeycomb Large Grey Line"
|
7196 |
msgstr ""
|
7197 |
|
7198 |
-
#: admin/maintenance/maintenance.php:
|
7199 |
msgid "Black Mesh Small"
|
7200 |
msgstr ""
|
7201 |
|
7202 |
-
#: admin/maintenance/maintenance.php:
|
7203 |
msgid "Black Mesh Small Grey Line"
|
7204 |
msgstr ""
|
7205 |
|
7206 |
-
#: admin/maintenance/maintenance.php:
|
7207 |
msgid "Blue Honeycomb Large"
|
7208 |
msgstr ""
|
7209 |
|
7210 |
-
#: admin/maintenance/maintenance.php:
|
7211 |
msgid "Blue Mesh Small"
|
7212 |
msgstr ""
|
7213 |
|
7214 |
-
#: admin/maintenance/maintenance.php:
|
7215 |
msgid "Brown Honeycomb Large"
|
7216 |
msgstr ""
|
7217 |
|
7218 |
-
#: admin/maintenance/maintenance.php:
|
7219 |
msgid "Brown Mesh Small"
|
7220 |
msgstr ""
|
7221 |
|
7222 |
-
#: admin/maintenance/maintenance.php:
|
7223 |
msgid "Green Honeycomb Large"
|
7224 |
msgstr ""
|
7225 |
|
7226 |
-
#: admin/maintenance/maintenance.php:
|
7227 |
msgid "Green Mesh Small"
|
7228 |
msgstr ""
|
7229 |
|
7230 |
-
#: admin/maintenance/maintenance.php:
|
7231 |
msgid "Gray Honeycomb Large"
|
7232 |
msgstr ""
|
7233 |
|
7234 |
-
#: admin/maintenance/maintenance.php:
|
7235 |
msgid "Gray Mesh Small"
|
7236 |
msgstr ""
|
7237 |
|
7238 |
-
#: admin/maintenance/maintenance.php:
|
7239 |
msgid "Orange Honeycomb Large"
|
7240 |
msgstr ""
|
7241 |
|
7242 |
-
#: admin/maintenance/maintenance.php:
|
7243 |
msgid "Orange Mesh Small"
|
7244 |
msgstr ""
|
7245 |
|
7246 |
-
#: admin/maintenance/maintenance.php:
|
7247 |
msgid "Purple Honeycomb Large"
|
7248 |
msgstr ""
|
7249 |
|
7250 |
-
#: admin/maintenance/maintenance.php:
|
7251 |
msgid "Purple Mesh Small"
|
7252 |
msgstr ""
|
7253 |
|
7254 |
-
#: admin/maintenance/maintenance.php:
|
7255 |
msgid "Red|Burgundy Honeycomb Large"
|
7256 |
msgstr ""
|
7257 |
|
7258 |
-
#: admin/maintenance/maintenance.php:
|
7259 |
msgid "Red|Burgundy Mesh Small"
|
7260 |
msgstr ""
|
7261 |
|
7262 |
-
#: admin/maintenance/maintenance.php:
|
7263 |
msgid "Yellow Honeycomb Large"
|
7264 |
msgstr ""
|
7265 |
|
7266 |
-
#: admin/maintenance/maintenance.php:
|
7267 |
msgid "Yellow Mesh Small"
|
7268 |
msgstr ""
|
7269 |
|
7270 |
-
#: admin/maintenance/maintenance.php:
|
7271 |
msgid "No Center Image"
|
7272 |
msgstr ""
|
7273 |
|
7274 |
-
#: admin/maintenance/maintenance.php:
|
7275 |
msgid "Basic Black"
|
7276 |
msgstr ""
|
7277 |
|
7278 |
-
#: admin/maintenance/maintenance.php:
|
7279 |
msgid "Black Veins"
|
7280 |
msgstr ""
|
7281 |
|
7282 |
-
#: admin/maintenance/maintenance.php:
|
7283 |
msgid "Blue Glass"
|
7284 |
msgstr ""
|
7285 |
|
7286 |
-
#: admin/maintenance/maintenance.php:
|
7287 |
msgid "Brushed Metal Stamped"
|
7288 |
msgstr ""
|
7289 |
|
7290 |
-
#: admin/maintenance/maintenance.php:
|
7291 |
msgid "Chrome"
|
7292 |
msgstr ""
|
7293 |
|
7294 |
-
#: admin/maintenance/maintenance.php:
|
7295 |
msgid "Chrome Slick"
|
7296 |
msgstr ""
|
7297 |
|
7298 |
-
#: admin/maintenance/maintenance.php:
|
7299 |
msgid "Fire"
|
7300 |
msgstr ""
|
7301 |
|
7302 |
-
#: admin/maintenance/maintenance.php:
|
7303 |
msgid "Gun Metal"
|
7304 |
msgstr ""
|
7305 |
|
7306 |
-
#: admin/maintenance/maintenance.php:
|
7307 |
msgid "Mercury"
|
7308 |
msgstr ""
|
7309 |
|
7310 |
-
#: admin/maintenance/maintenance.php:
|
7311 |
msgid "Smoke"
|
7312 |
msgstr ""
|
7313 |
|
7314 |
-
#: admin/maintenance/maintenance.php:
|
7315 |
msgid "Striped Cone"
|
7316 |
msgstr ""
|
7317 |
|
7318 |
-
#: admin/maintenance/maintenance.php:
|
7319 |
msgid "Swamp Bevel"
|
7320 |
msgstr ""
|
7321 |
|
7322 |
-
#: admin/maintenance/maintenance.php:
|
7323 |
msgid "Toy"
|
7324 |
msgstr ""
|
7325 |
|
7326 |
-
#: admin/maintenance/maintenance.php:
|
7327 |
msgid "Water Reflection"
|
7328 |
msgstr ""
|
7329 |
|
7330 |
-
#: admin/maintenance/maintenance.php:
|
7331 |
msgid "Wood Grain"
|
7332 |
msgstr ""
|
7333 |
|
7334 |
-
#: admin/maintenance/maintenance.php:
|
7335 |
msgid "No Background Color"
|
7336 |
msgstr ""
|
7337 |
|
7338 |
-
#: admin/maintenance/maintenance.php:
|
7339 |
msgid "Black"
|
7340 |
msgstr ""
|
7341 |
|
7342 |
-
#: admin/maintenance/maintenance.php:
|
7343 |
msgid "Display Visitor IP Address"
|
7344 |
msgstr ""
|
7345 |
|
7346 |
-
#: admin/maintenance/maintenance.php:
|
7347 |
msgid "Display Dashboard Reminder Message"
|
7348 |
msgstr ""
|
7349 |
|
7350 |
-
#: admin/maintenance/maintenance.php:
|
7351 |
msgid "Enable Visitor Logging"
|
7352 |
msgstr ""
|
7353 |
|
7354 |
-
#: admin/maintenance/maintenance.php:
|
7355 |
msgid "Send Email when Countdown Timer has completed"
|
7356 |
msgstr ""
|
7357 |
|
7358 |
-
#: admin/maintenance/maintenance.php:
|
7359 |
msgid "Send Countdown Timer Email To:"
|
7360 |
msgstr ""
|
7361 |
|
7362 |
-
#: admin/maintenance/maintenance.php:
|
7363 |
msgid "Send Countdown Timer Email From:"
|
7364 |
msgstr ""
|
7365 |
|
7366 |
-
#: admin/maintenance/maintenance.php:
|
7367 |
msgid "Send Countdown Timer Email Cc:"
|
7368 |
msgstr ""
|
7369 |
|
7370 |
-
#: admin/maintenance/maintenance.php:
|
7371 |
msgid "Send Countdown Timer Email Bcc:"
|
7372 |
msgstr ""
|
7373 |
|
7374 |
-
#: admin/maintenance/maintenance.php:
|
7375 |
msgid "MMode Network|Multisite Options"
|
7376 |
msgstr ""
|
7377 |
|
7378 |
-
#: admin/maintenance/maintenance.php:
|
7379 |
msgid "Network|Multisite Primary Site Options ONLY"
|
7380 |
msgstr ""
|
7381 |
|
7382 |
-
#: admin/maintenance/maintenance.php:
|
7383 |
msgid ""
|
7384 |
"Click the Maintenance Mode Question Mark help button for the steps to use "
|
7385 |
"these special options:"
|
7386 |
msgstr ""
|
7387 |
|
7388 |
-
#: admin/maintenance/maintenance.php:
|
7389 |
msgid "Put The Primary Site And All Subsites In Maintenance Mode"
|
7390 |
msgstr ""
|
7391 |
|
7392 |
-
#: admin/maintenance/maintenance.php:
|
7393 |
msgid "Put All Subsites In Maintenance Mode, But Not The Primary Site"
|
7394 |
msgstr ""
|
7395 |
|
7396 |
-
#: admin/maintenance/maintenance.php:
|
7397 |
msgid ""
|
7398 |
"Clicking OK Saves your Options/Settings to your Database and also creates "
|
7399 |
"your Maintenance Mode page. Click the Preview button to preview your "
|
@@ -7401,98 +7390,98 @@ msgid ""
|
|
7401 |
"Turn On button to enable Maintenance Mode on your website."
|
7402 |
msgstr ""
|
7403 |
|
7404 |
-
#: admin/maintenance/maintenance.php:
|
7405 |
msgid ""
|
7406 |
"Error: You did not enter an IP Address in the Maintenance Mode IP Address "
|
7407 |
"Whitelist Text Box."
|
7408 |
msgstr ""
|
7409 |
|
7410 |
-
#: admin/maintenance/maintenance.php:
|
7411 |
msgid ""
|
7412 |
"IP Address Format Error: You have entered multiple IP Addresses using an "
|
7413 |
"incorrect Format."
|
7414 |
msgstr ""
|
7415 |
|
7416 |
-
#: admin/maintenance/maintenance.php:
|
7417 |
msgid ""
|
7418 |
"The correct IP Address Format is: IP Address comma single space. Example: "
|
7419 |
"100.99.88.77, 200.66.55.44, 44.33.22.1 or 100.99.88., 200.66.55., 44.33.22. "
|
7420 |
"if you are using the recommended 3 octet IP addresses."
|
7421 |
msgstr ""
|
7422 |
|
7423 |
-
#: admin/maintenance/maintenance.php:
|
7424 |
msgid ""
|
7425 |
"Correct the IP Address Format and click the Save Options button again. If "
|
7426 |
"you have an IPv6 IP address use the same general format as an IPv4 IP "
|
7427 |
"address - comma single space."
|
7428 |
msgstr ""
|
7429 |
|
7430 |
-
#: admin/maintenance/maintenance.php:
|
7431 |
-
#: admin/maintenance/maintenance.php:
|
7432 |
msgid "FrontEnd Maintenance Mode has been Turned On."
|
7433 |
msgstr ""
|
7434 |
|
7435 |
-
#: admin/maintenance/maintenance.php:
|
7436 |
-
#: admin/maintenance/maintenance.php:
|
7437 |
-
#: admin/maintenance/maintenance.php:
|
7438 |
-
#: admin/maintenance/maintenance.php:
|
7439 |
msgid "htaccess Files Disabled: BackEnd Maintenance Mode is disabled."
|
7440 |
msgstr ""
|
7441 |
|
7442 |
-
#: admin/maintenance/maintenance.php:
|
7443 |
-
#: admin/maintenance/maintenance.php:
|
7444 |
msgid "BackEnd Maintenance Mode has been Turned On."
|
7445 |
msgstr ""
|
7446 |
|
7447 |
-
#: admin/maintenance/maintenance.php:
|
7448 |
-
#: admin/maintenance/maintenance.php:
|
7449 |
msgid ""
|
7450 |
"Error: You have not saved your option settings yet. Click the Save Options "
|
7451 |
"button."
|
7452 |
msgstr ""
|
7453 |
|
7454 |
-
#: admin/maintenance/maintenance.php:
|
7455 |
msgid ""
|
7456 |
"Error: Unable to get/find the site root index.php file for this GWIOD - "
|
7457 |
"Giving WordPress Its Own Directory - website."
|
7458 |
msgstr ""
|
7459 |
|
7460 |
-
#: admin/maintenance/maintenance.php:
|
7461 |
msgid "GWIOD Site Root index.php File Path Checked: "
|
7462 |
msgstr ""
|
7463 |
|
7464 |
-
#: admin/maintenance/maintenance.php:
|
7465 |
msgid ""
|
7466 |
"BPS Maintenance Mode will not work correctly with your WordPress GWIOD "
|
7467 |
"setup. Try another WordPress Maintenance Mode plugin."
|
7468 |
msgstr ""
|
7469 |
|
7470 |
-
#: admin/maintenance/maintenance.php:
|
7471 |
msgid ""
|
7472 |
"Error: Unable to get/find the site root index.php file for this Network "
|
7473 |
"GWIOD - Giving WordPress Its Own Directory - website."
|
7474 |
msgstr ""
|
7475 |
|
7476 |
-
#: admin/maintenance/maintenance.php:
|
7477 |
msgid "Network GWIOD Site Root index.php File Path Checked: "
|
7478 |
msgstr ""
|
7479 |
|
7480 |
-
#: admin/maintenance/maintenance.php:
|
7481 |
msgid ""
|
7482 |
"Please copy this error message and send it in an email to info@ait-pro.com "
|
7483 |
"for assistance."
|
7484 |
msgstr ""
|
7485 |
|
7486 |
-
#: admin/maintenance/maintenance.php:
|
7487 |
-
#: admin/maintenance/maintenance.php:
|
7488 |
-
#: admin/maintenance/maintenance.php:
|
7489 |
-
#: admin/maintenance/maintenance.php:
|
7490 |
msgid "FrontEnd Maintenance Mode has been Turned Off."
|
7491 |
msgstr ""
|
7492 |
|
7493 |
-
#: admin/maintenance/maintenance.php:
|
7494 |
-
#: admin/maintenance/maintenance.php:
|
7495 |
-
#: admin/maintenance/maintenance.php:
|
7496 |
msgid "BackEnd Maintenance Mode has been Turned Off."
|
7497 |
msgstr ""
|
7498 |
|
@@ -7648,7 +7637,7 @@ msgid ""
|
|
7648 |
"will be deleted."
|
7649 |
msgstr ""
|
7650 |
|
7651 |
-
#: admin/mscan/mscan-help-text.php:32 admin/mscan/mscan.php:
|
7652 |
msgid "Website Folders & Files To Scan"
|
7653 |
msgstr ""
|
7654 |
|
@@ -7687,7 +7676,7 @@ msgid ""
|
|
7687 |
"than 300 seconds."
|
7688 |
msgstr ""
|
7689 |
|
7690 |
-
#: admin/mscan/mscan-help-text.php:38 admin/mscan/mscan.php:
|
7691 |
msgid "Exclude Individual Folders"
|
7692 |
msgstr ""
|
7693 |
|
@@ -7704,7 +7693,7 @@ msgid ""
|
|
7704 |
"particular cache folder under the wp-content folder."
|
7705 |
msgstr ""
|
7706 |
|
7707 |
-
#: admin/mscan/mscan-help-text.php:40 admin/mscan/mscan.php:
|
7708 |
msgid "Scan Database"
|
7709 |
msgstr ""
|
7710 |
|
@@ -7714,7 +7703,7 @@ msgid ""
|
|
7714 |
"suspicious code."
|
7715 |
msgstr ""
|
7716 |
|
7717 |
-
#: admin/mscan/mscan-help-text.php:42 admin/mscan/mscan.php:
|
7718 |
msgid "Scan Skipped Files Only"
|
7719 |
msgstr ""
|
7720 |
|
@@ -7727,7 +7716,7 @@ msgid ""
|
|
7727 |
"to On."
|
7728 |
msgstr ""
|
7729 |
|
7730 |
-
#: admin/mscan/mscan-help-text.php:44 admin/mscan/mscan.php:
|
7731 |
msgid "Automatically Delete /tmp Files"
|
7732 |
msgstr ""
|
7733 |
|
@@ -7737,7 +7726,7 @@ msgid ""
|
|
7737 |
"commonly hide hacker files in the /tmp folder."
|
7738 |
msgstr ""
|
7739 |
|
7740 |
-
#: admin/mscan/mscan-help-text.php:46 admin/mscan/mscan.php:
|
7741 |
msgid "Exclude /tmp Files"
|
7742 |
msgstr ""
|
7743 |
|
@@ -7837,7 +7826,7 @@ msgid ""
|
|
7837 |
"convention: theme-name-child.x.x.zip."
|
7838 |
msgstr ""
|
7839 |
|
7840 |
-
#: admin/mscan/mscan-help-text.php:60 admin/mscan/mscan.php:
|
7841 |
msgid "View|Ignore|Delete Suspicious Files"
|
7842 |
msgstr ""
|
7843 |
|
@@ -7852,7 +7841,7 @@ msgid ""
|
|
7852 |
"ignored file it will be scanned in future scans."
|
7853 |
msgstr ""
|
7854 |
|
7855 |
-
#: admin/mscan/mscan-help-text.php:62 admin/mscan/mscan.php:
|
7856 |
msgid "View|Ignore Suspicious DB Entries"
|
7857 |
msgstr ""
|
7858 |
|
@@ -8014,50 +8003,50 @@ msgstr ""
|
|
8014 |
msgid "MScan Scan"
|
8015 |
msgstr ""
|
8016 |
|
8017 |
-
#: admin/mscan/mscan.php:217 admin/mscan/mscan.php:
|
8018 |
-
#: admin/mscan/mscan.php:
|
8019 |
msgid "MScan Log"
|
8020 |
msgstr ""
|
8021 |
|
8022 |
-
#: admin/mscan/mscan.php:218 admin/mscan/mscan.php:
|
8023 |
-
#: admin/mscan/mscan.php:
|
8024 |
msgid "MScan Report"
|
8025 |
msgstr ""
|
8026 |
|
8027 |
-
#: admin/mscan/mscan.php:219 admin/mscan/mscan.php:
|
8028 |
-
#: admin/mscan/mscan.php:
|
8029 |
msgid "MScan Saved Reports"
|
8030 |
msgstr ""
|
8031 |
|
8032 |
-
#: admin/mscan/mscan.php:
|
8033 |
msgid "MScan Malware Scanner Guide"
|
8034 |
msgstr ""
|
8035 |
|
8036 |
-
#: admin/mscan/mscan.php:
|
8037 |
msgid "MScan Troubleshooting & Code Posting"
|
8038 |
msgstr ""
|
8039 |
|
8040 |
-
#: admin/mscan/mscan.php:
|
8041 |
msgid "BPS Pro Troubleshooting Steps"
|
8042 |
msgstr ""
|
8043 |
|
8044 |
-
#: admin/mscan/mscan.php:
|
8045 |
msgid "WP Core Zip File Download Failed"
|
8046 |
msgstr ""
|
8047 |
|
8048 |
-
#: admin/mscan/mscan.php:
|
8049 |
msgid "Plugin Zip File Download Failed"
|
8050 |
msgstr ""
|
8051 |
|
8052 |
-
#: admin/mscan/mscan.php:
|
8053 |
msgid "Theme Zip File Download Failed"
|
8054 |
msgstr ""
|
8055 |
|
8056 |
-
#: admin/mscan/mscan.php:
|
8057 |
msgid "Error: Zip file download errors occurred"
|
8058 |
msgstr ""
|
8059 |
|
8060 |
-
#: admin/mscan/mscan.php:
|
8061 |
msgid ""
|
8062 |
"The problem could either be caused due to a connectivity issue when "
|
8063 |
"requesting zip files from wordpress.org or a folder permission or Ownership "
|
@@ -8066,13 +8055,13 @@ msgid ""
|
|
8066 |
"activity/"
|
8067 |
msgstr ""
|
8068 |
|
8069 |
-
#: admin/mscan/mscan.php:
|
8070 |
msgid ""
|
8071 |
"MScan scan results and data has been deleted. Your MScan option settings "
|
8072 |
"have not been deleted."
|
8073 |
msgstr ""
|
8074 |
|
8075 |
-
#: admin/mscan/mscan.php:
|
8076 |
msgid ""
|
8077 |
"MScan Plugin and Theme file hashes have been deleted. New Plugin and Theme "
|
8078 |
"file hashes will be created the next time you run a scan. You should also "
|
@@ -8080,20 +8069,20 @@ msgid ""
|
|
8080 |
"settings have not been deleted."
|
8081 |
msgstr ""
|
8082 |
|
8083 |
-
#: admin/mscan/mscan.php:
|
8084 |
-
#: admin/mscan/mscan.php:
|
8085 |
msgid "Skipped file scanning is turned On. Only skipped files will be scanned."
|
8086 |
msgstr ""
|
8087 |
|
8088 |
-
#: admin/mscan/mscan.php:
|
8089 |
msgid "MScan scanning has been stopped."
|
8090 |
msgstr ""
|
8091 |
|
8092 |
-
#: admin/mscan/mscan.php:
|
8093 |
msgid "First Time Scan or the Delete File Hashes Tool was used"
|
8094 |
msgstr ""
|
8095 |
|
8096 |
-
#: admin/mscan/mscan.php:
|
8097 |
msgid ""
|
8098 |
"You will only see this message the first time you run a scan or if you use "
|
8099 |
"the Delete Files Hashes Tool. The File Hash Maker runs whenever WP Core, "
|
@@ -8102,36 +8091,36 @@ msgid ""
|
|
8102 |
"scan after the File Hash Maker has completed."
|
8103 |
msgstr ""
|
8104 |
|
8105 |
-
#: admin/mscan/mscan.php:
|
8106 |
msgid "Click OK to stop scanning or click Cancel."
|
8107 |
msgstr ""
|
8108 |
|
8109 |
-
#: admin/mscan/mscan.php:
|
8110 |
msgid ""
|
8111 |
"Click OK to reset/delete all MScan scan results and data or click Cancel. "
|
8112 |
"Note: MScan option settings will not be reset/deleted."
|
8113 |
msgstr ""
|
8114 |
|
8115 |
-
#: admin/mscan/mscan.php:
|
8116 |
msgid "MScan Options & Tools"
|
8117 |
msgstr ""
|
8118 |
|
8119 |
-
#: admin/mscan/mscan.php:
|
8120 |
msgid "Save MScan Options"
|
8121 |
msgstr ""
|
8122 |
|
8123 |
-
#: admin/mscan/mscan.php:
|
8124 |
msgid ""
|
8125 |
"Skipped file scanning is turned On. There are no skipped files to be "
|
8126 |
"scanned. Either there really are not any skipped files to scan or you have "
|
8127 |
"not run a regular scan yet with the Skipped File Scan option turned Off."
|
8128 |
msgstr ""
|
8129 |
|
8130 |
-
#: admin/mscan/mscan.php:
|
8131 |
msgid "Warning: "
|
8132 |
msgstr ""
|
8133 |
|
8134 |
-
#: admin/mscan/mscan.php:
|
8135 |
msgid ""
|
8136 |
"On some web hosts (Known host issues: SiteGround, Cyon) turning On the "
|
8137 |
"\"Automatically Delete /tmp Files\" option setting will cause your website/"
|
@@ -8142,31 +8131,31 @@ msgid ""
|
|
8142 |
"the names of those tmp files to exclude."
|
8143 |
msgstr ""
|
8144 |
|
8145 |
-
#: admin/mscan/mscan.php:
|
8146 |
msgid "MScan Options saved."
|
8147 |
msgstr ""
|
8148 |
|
8149 |
-
#: admin/mscan/mscan.php:
|
8150 |
msgid "Files are not displayed, but will be scanned"
|
8151 |
msgstr ""
|
8152 |
|
8153 |
-
#: admin/mscan/mscan.php:
|
8154 |
msgid "MScan Options"
|
8155 |
msgstr ""
|
8156 |
|
8157 |
-
#: admin/mscan/mscan.php:
|
8158 |
msgid "MScan Tools"
|
8159 |
msgstr ""
|
8160 |
|
8161 |
-
#: admin/mscan/mscan.php:
|
8162 |
msgid "Folder Name"
|
8163 |
msgstr ""
|
8164 |
|
8165 |
-
#: admin/mscan/mscan.php:
|
8166 |
msgid "Folder is not readable"
|
8167 |
msgstr ""
|
8168 |
|
8169 |
-
#: admin/mscan/mscan.php:
|
8170 |
msgid ""
|
8171 |
"This folder contains another WordPress website. This checkbox cannot be "
|
8172 |
"checked. To scan that site run MScan from that site. Click the MScan "
|
@@ -8174,95 +8163,95 @@ msgid ""
|
|
8174 |
"\" help section."
|
8175 |
msgstr ""
|
8176 |
|
8177 |
-
#: admin/mscan/mscan.php:
|
8178 |
msgid "Max File Size Limit to Scan:"
|
8179 |
msgstr ""
|
8180 |
|
8181 |
-
#: admin/mscan/mscan.php:
|
8182 |
msgid "Max Time Limit to Scan:"
|
8183 |
msgstr ""
|
8184 |
|
8185 |
-
#: admin/mscan/mscan.php:
|
8186 |
msgid "Enter one folder path per line. Include folder slashes."
|
8187 |
msgstr ""
|
8188 |
|
8189 |
-
#: admin/mscan/mscan.php:
|
8190 |
msgid "Example:"
|
8191 |
msgstr ""
|
8192 |
|
8193 |
-
#: admin/mscan/mscan.php:
|
8194 |
-
#: admin/mscan/mscan.php:
|
8195 |
msgid "Click the MScan Question Mark help button for more help info."
|
8196 |
msgstr ""
|
8197 |
|
8198 |
-
#: admin/mscan/mscan.php:
|
8199 |
msgid "Database Scan On"
|
8200 |
msgstr ""
|
8201 |
|
8202 |
-
#: admin/mscan/mscan.php:
|
8203 |
msgid "Database Scan Off"
|
8204 |
msgstr ""
|
8205 |
|
8206 |
-
#: admin/mscan/mscan.php:
|
8207 |
msgid ""
|
8208 |
"When Skipped File Scan is On only skipped files will be scanned. Note: No "
|
8209 |
"other MScan option settings have any effect while Skipped File Scan is set "
|
8210 |
"to On."
|
8211 |
msgstr ""
|
8212 |
|
8213 |
-
#: admin/mscan/mscan.php:
|
8214 |
msgid "Skipped File Scan Off"
|
8215 |
msgstr ""
|
8216 |
|
8217 |
-
#: admin/mscan/mscan.php:
|
8218 |
msgid "Skipped File Scan On"
|
8219 |
msgstr ""
|
8220 |
|
8221 |
-
#: admin/mscan/mscan.php:
|
8222 |
msgid "Delete Tmp Files Off"
|
8223 |
msgstr ""
|
8224 |
|
8225 |
-
#: admin/mscan/mscan.php:
|
8226 |
msgid "Delete Tmp Files On"
|
8227 |
msgstr ""
|
8228 |
|
8229 |
-
#: admin/mscan/mscan.php:
|
8230 |
msgid "Enter one file name per line."
|
8231 |
msgstr ""
|
8232 |
|
8233 |
-
#: admin/mscan/mscan.php:
|
8234 |
msgid "Scheduled Scan Frequency (BPS Pro only)"
|
8235 |
msgstr ""
|
8236 |
|
8237 |
-
#: admin/mscan/mscan.php:
|
8238 |
msgid "Scheduled Scan Off"
|
8239 |
msgstr ""
|
8240 |
|
8241 |
-
#: admin/mscan/mscan.php:
|
8242 |
msgid "Run Scan Every 60 Minutes"
|
8243 |
msgstr ""
|
8244 |
|
8245 |
-
#: admin/mscan/mscan.php:
|
8246 |
msgid "Run Scan Every 3 Hours"
|
8247 |
msgstr ""
|
8248 |
|
8249 |
-
#: admin/mscan/mscan.php:
|
8250 |
msgid "Run Scan Every 6 Hours"
|
8251 |
msgstr ""
|
8252 |
|
8253 |
-
#: admin/mscan/mscan.php:
|
8254 |
msgid "Run Scan Every 12 Hours"
|
8255 |
msgstr ""
|
8256 |
|
8257 |
-
#: admin/mscan/mscan.php:
|
8258 |
msgid "Run Scan Every 24 Hours"
|
8259 |
msgstr ""
|
8260 |
|
8261 |
-
#: admin/mscan/mscan.php:
|
8262 |
msgid "Click OK to save MScan Options or click Cancel"
|
8263 |
msgstr ""
|
8264 |
|
8265 |
-
#: admin/mscan/mscan.php:
|
8266 |
msgid ""
|
8267 |
"CAUTION: Please click the MScan Question Mark help button before using this "
|
8268 |
"tool. This tool allows you to delete the Plugin and Theme file hashes.\\n"
|
@@ -8273,61 +8262,61 @@ msgid ""
|
|
8273 |
"OK to delete Plugin and Theme file hashes or click Cancel"
|
8274 |
msgstr ""
|
8275 |
|
8276 |
-
#: admin/mscan/mscan.php:
|
8277 |
msgid ""
|
8278 |
"Clicking OK will upload Plugin Zip files to the /wp-content/bps-backup/"
|
8279 |
"plugin-hashes/ folder. The zip files will be extracted, MD5 file hashes will "
|
8280 |
"be created and the zip files will be deleted."
|
8281 |
msgstr ""
|
8282 |
|
8283 |
-
#: admin/mscan/mscan.php:
|
8284 |
msgid ""
|
8285 |
"Zip files MUST be named using this exact format: plugin-name.x.x.zip where x "
|
8286 |
"is the actual current version number of the plugin in the zip file."
|
8287 |
msgstr ""
|
8288 |
|
8289 |
-
#: admin/mscan/mscan.php:
|
8290 |
msgid "Click OK to upload Plugin Zip files or click Cancel."
|
8291 |
msgstr ""
|
8292 |
|
8293 |
-
#: admin/mscan/mscan.php:
|
8294 |
msgid ""
|
8295 |
"Clicking OK will upload Theme Zip files to the /wp-content/bps-backup/theme-"
|
8296 |
"hashes/ folder. The zip files will be extracted, MD5 file hashes will be "
|
8297 |
"created and the zip files will be deleted."
|
8298 |
msgstr ""
|
8299 |
|
8300 |
-
#: admin/mscan/mscan.php:
|
8301 |
msgid ""
|
8302 |
"Zip files MUST be named using this exact format: theme-name.x.x.zip where x "
|
8303 |
"is the actual current version number of the theme in the zip file."
|
8304 |
msgstr ""
|
8305 |
|
8306 |
-
#: admin/mscan/mscan.php:
|
8307 |
msgid "Click OK to upload Theme Zip files or click Cancel."
|
8308 |
msgstr ""
|
8309 |
|
8310 |
-
#: admin/mscan/mscan.php:
|
8311 |
msgid "Plugin Zip File Upload Successful: "
|
8312 |
msgstr ""
|
8313 |
|
8314 |
-
#: admin/mscan/mscan.php:
|
8315 |
msgid "Error: Zip File Upload Failed: "
|
8316 |
msgstr ""
|
8317 |
|
8318 |
-
#: admin/mscan/mscan.php:
|
8319 |
msgid "Unable to move this uploaded zip file: "
|
8320 |
msgstr ""
|
8321 |
|
8322 |
-
#: admin/mscan/mscan.php:
|
8323 |
msgid " to this folder: "
|
8324 |
msgstr ""
|
8325 |
|
8326 |
-
#: admin/mscan/mscan.php:
|
8327 |
msgid "File Extension/Type or Filename Error: "
|
8328 |
msgstr ""
|
8329 |
|
8330 |
-
#: admin/mscan/mscan.php:
|
8331 |
msgid ""
|
8332 |
" is either not a .zip file or the .zip file is not named correctly. Only ."
|
8333 |
"zip files are allowed to be uploaded. Zip files MUST be named using this "
|
@@ -8335,21 +8324,21 @@ msgid ""
|
|
8335 |
"version of the plugin in the zip file."
|
8336 |
msgstr ""
|
8337 |
|
8338 |
-
#: admin/mscan/mscan.php:
|
8339 |
msgid "Error: No zip file chosen: "
|
8340 |
msgstr ""
|
8341 |
|
8342 |
-
#: admin/mscan/mscan.php:
|
8343 |
msgid ""
|
8344 |
"You need to choose zip files before clicking the Upload Plugin Zip Files "
|
8345 |
"button."
|
8346 |
msgstr ""
|
8347 |
|
8348 |
-
#: admin/mscan/mscan.php:
|
8349 |
msgid "Theme Zip File Upload Successful: "
|
8350 |
msgstr ""
|
8351 |
|
8352 |
-
#: admin/mscan/mscan.php:
|
8353 |
msgid ""
|
8354 |
" is either not a .zip file or the .zip file is not named correctly. Only ."
|
8355 |
"zip files are allowed to be uploaded. Zip files MUST be named using this "
|
@@ -8357,199 +8346,199 @@ msgid ""
|
|
8357 |
"version of the theme in the zip file."
|
8358 |
msgstr ""
|
8359 |
|
8360 |
-
#: admin/mscan/mscan.php:
|
8361 |
msgid ""
|
8362 |
"You need to choose zip files before clicking the Upload Theme Zip Files "
|
8363 |
"button."
|
8364 |
msgstr ""
|
8365 |
|
8366 |
-
#: admin/mscan/mscan.php:
|
8367 |
msgid " has been deleted."
|
8368 |
msgstr ""
|
8369 |
|
8370 |
-
#: admin/mscan/mscan.php:
|
8371 |
msgid ""
|
8372 |
" Current Status has been changed to Ignored File and this file will not be "
|
8373 |
"scanned in any future MScan Scans."
|
8374 |
msgstr ""
|
8375 |
|
8376 |
-
#: admin/mscan/mscan.php:
|
8377 |
msgid ""
|
8378 |
" Ignored File Status has been removed. The previous Status of the file will "
|
8379 |
"be displayed again and this file will be scanned in future MScan scans."
|
8380 |
msgstr ""
|
8381 |
|
8382 |
-
#: admin/mscan/mscan.php:
|
8383 |
-
#: admin/mscan/mscan.php:
|
8384 |
msgid "Close File"
|
8385 |
msgstr ""
|
8386 |
|
8387 |
-
#: admin/mscan/mscan.php:
|
8388 |
-
#: admin/mscan/mscan.php:
|
8389 |
msgid "MScan Pattern Match"
|
8390 |
msgstr ""
|
8391 |
|
8392 |
-
#: admin/mscan/mscan.php:
|
8393 |
msgid ""
|
8394 |
"Only the MScan Pattern Match is displayed for images instead of the image "
|
8395 |
"file code."
|
8396 |
msgstr ""
|
8397 |
|
8398 |
-
#: admin/mscan/mscan.php:
|
8399 |
msgid ""
|
8400 |
"Opening image files to view image file code does not work well in a Browser."
|
8401 |
msgstr ""
|
8402 |
|
8403 |
-
#: admin/mscan/mscan.php:
|
8404 |
msgid ""
|
8405 |
"You can download suspicious image files and use a code editor like Notepad++ "
|
8406 |
"to check image file code for any malicious code."
|
8407 |
msgstr ""
|
8408 |
|
8409 |
-
#: admin/mscan/mscan.php:
|
8410 |
-
#: admin/mscan/mscan.php:
|
8411 |
msgid ""
|
8412 |
"If you are not sure what to check for or what is and is not malicious code "
|
8413 |
"then click the MScan Question Mark help button."
|
8414 |
msgstr ""
|
8415 |
|
8416 |
-
#: admin/mscan/mscan.php:
|
8417 |
msgid "MScan File Hash Mismatch"
|
8418 |
msgstr ""
|
8419 |
|
8420 |
-
#: admin/mscan/mscan.php:
|
8421 |
msgid ""
|
8422 |
"Known Issues: Some plugins and themes alter or create new files after they "
|
8423 |
"are installed. That will create false positives."
|
8424 |
msgstr ""
|
8425 |
|
8426 |
-
#: admin/mscan/mscan.php:
|
8427 |
msgid ""
|
8428 |
"You can download files that are seen as suspicious and compare them to new "
|
8429 |
"plugin or theme files using a code editor like Notepad++."
|
8430 |
msgstr ""
|
8431 |
|
8432 |
-
#: admin/mscan/mscan.php:
|
8433 |
msgid ""
|
8434 |
"You can use your Browser's Search or Find feature to search the file "
|
8435 |
"contents/code displayed below using the MScan Pattern Match above for the "
|
8436 |
"suspicious code that was detected by MScan."
|
8437 |
msgstr ""
|
8438 |
|
8439 |
-
#: admin/mscan/mscan.php:
|
8440 |
msgid ""
|
8441 |
"You can download suspicious files if you would like to check the file "
|
8442 |
"contents/code more extensively with a code editor like Notepad++."
|
8443 |
msgstr ""
|
8444 |
|
8445 |
-
#: admin/mscan/mscan.php:
|
8446 |
-
#: admin/mscan/mscan.php:
|
8447 |
msgid ""
|
8448 |
"File hash comparison scan results are 100% accurate. WP Core, Plugin and "
|
8449 |
"Theme files are scanned using file hash comparison scanning."
|
8450 |
msgstr ""
|
8451 |
|
8452 |
-
#: admin/mscan/mscan.php:
|
8453 |
-
#: admin/mscan/mscan.php:
|
8454 |
msgid ""
|
8455 |
"Pattern matching scan results are less accurate and will usually detect some "
|
8456 |
"false positive matches. All other files that are not WP Core, Plugin and "
|
8457 |
"Theme files are scanned using pattern matching scanning."
|
8458 |
msgstr ""
|
8459 |
|
8460 |
-
#: admin/mscan/mscan.php:
|
8461 |
msgid ""
|
8462 |
"You can View, Ignore and Delete files detected as suspicious using the Form "
|
8463 |
"below. Before deleting any files make a backup of those files on your "
|
8464 |
"computer not on your hosting account."
|
8465 |
msgstr ""
|
8466 |
|
8467 |
-
#: admin/mscan/mscan.php:
|
8468 |
-
#: admin/mscan/mscan.php:
|
8469 |
msgid ""
|
8470 |
"And of course check the file contents of suspicious files to see if they "
|
8471 |
"contain hacker code or are false positive matches. Use the Ignore File "
|
8472 |
"checkbox option to ignore false postive matches."
|
8473 |
msgstr ""
|
8474 |
|
8475 |
-
#: admin/mscan/mscan.php:
|
8476 |
-
#: admin/mscan/mscan.php:
|
8477 |
msgid ""
|
8478 |
"When you ignore a file it will no longer be scanned in any future scans. "
|
8479 |
"When you unignore an ignored file it will be scanned in future scans."
|
8480 |
msgstr ""
|
8481 |
|
8482 |
-
#: admin/mscan/mscan.php:
|
8483 |
-
#: admin/mscan/mscan.php:
|
8484 |
-
#: admin/mscan/mscan.php:
|
8485 |
msgid "Current Status"
|
8486 |
msgstr ""
|
8487 |
|
8488 |
-
#: admin/mscan/mscan.php:
|
8489 |
msgid "View<br>File"
|
8490 |
msgstr ""
|
8491 |
|
8492 |
-
#: admin/mscan/mscan.php:
|
8493 |
msgid "Ignore<br>File"
|
8494 |
msgstr ""
|
8495 |
|
8496 |
-
#: admin/mscan/mscan.php:
|
8497 |
msgid "Unignore<br>File"
|
8498 |
msgstr ""
|
8499 |
|
8500 |
-
#: admin/mscan/mscan.php:
|
8501 |
msgid "Delete<br>File"
|
8502 |
msgstr ""
|
8503 |
|
8504 |
-
#: admin/mscan/mscan.php:
|
8505 |
-
#: admin/mscan/mscan.php:
|
8506 |
-
#: admin/system-info/system-info.php:
|
8507 |
msgid "File Path"
|
8508 |
msgstr ""
|
8509 |
|
8510 |
-
#: admin/mscan/mscan.php:
|
8511 |
msgid "File Hash or<br>Pattern Match"
|
8512 |
msgstr ""
|
8513 |
|
8514 |
-
#: admin/mscan/mscan.php:
|
8515 |
msgid "Scan<br>Time"
|
8516 |
msgstr ""
|
8517 |
|
8518 |
-
#: admin/mscan/mscan.php:
|
8519 |
msgid "Skipped File"
|
8520 |
msgstr ""
|
8521 |
|
8522 |
-
#: admin/mscan/mscan.php:
|
8523 |
msgid "Not Scanned"
|
8524 |
msgstr ""
|
8525 |
|
8526 |
-
#: admin/mscan/mscan.php:
|
8527 |
-
#: admin/mscan/mscan.php:
|
8528 |
msgid "Ignored File"
|
8529 |
msgstr ""
|
8530 |
|
8531 |
-
#: admin/mscan/mscan.php:
|
8532 |
msgid "Suspicious File"
|
8533 |
msgstr ""
|
8534 |
|
8535 |
-
#: admin/mscan/mscan.php:
|
8536 |
-
#: admin/mscan/mscan.php:
|
8537 |
msgid "View"
|
8538 |
msgstr ""
|
8539 |
|
8540 |
-
#: admin/mscan/mscan.php:
|
8541 |
msgid "Ignore"
|
8542 |
msgstr ""
|
8543 |
|
8544 |
-
#: admin/mscan/mscan.php:
|
8545 |
msgid "Unignore"
|
8546 |
msgstr ""
|
8547 |
|
8548 |
-
#: admin/mscan/mscan.php:
|
8549 |
msgid "No Suspicious Files were detected"
|
8550 |
msgstr ""
|
8551 |
|
8552 |
-
#: admin/mscan/mscan.php:
|
8553 |
msgid ""
|
8554 |
"View File Option: Selecting the View File Checkbox Form option will display "
|
8555 |
"the contents of the file that you have selected to view.\\n"
|
@@ -8569,45 +8558,45 @@ msgid ""
|
|
8569 |
"OK to proceed or click Cancel"
|
8570 |
msgstr ""
|
8571 |
|
8572 |
-
#: admin/mscan/mscan.php:
|
8573 |
msgid "Current Status has been changed to Ignored for DB Row ID"
|
8574 |
msgstr ""
|
8575 |
|
8576 |
-
#: admin/mscan/mscan.php:
|
8577 |
msgid "in DB Column"
|
8578 |
msgstr ""
|
8579 |
|
8580 |
-
#: admin/mscan/mscan.php:
|
8581 |
msgid "This DB Entry will not be scanned in any future MScan Scans."
|
8582 |
msgstr ""
|
8583 |
|
8584 |
-
#: admin/mscan/mscan.php:
|
8585 |
msgid "The Ignored DB Entry Status has been removed for DB Row ID"
|
8586 |
msgstr ""
|
8587 |
|
8588 |
-
#: admin/mscan/mscan.php:
|
8589 |
msgid ""
|
8590 |
"The previous Status of the DB Entry will be displayed again and this DB "
|
8591 |
"Entry will be scanned in future MScan scans."
|
8592 |
msgstr ""
|
8593 |
|
8594 |
-
#: admin/mscan/mscan.php:
|
8595 |
msgid "Close"
|
8596 |
msgstr ""
|
8597 |
|
8598 |
-
#: admin/mscan/mscan.php:
|
8599 |
msgid "Pharma Hack DB Table and Column"
|
8600 |
msgstr ""
|
8601 |
|
8602 |
-
#: admin/mscan/mscan.php:
|
8603 |
msgid "Pharma Hack cleanup/removal steps"
|
8604 |
msgstr ""
|
8605 |
|
8606 |
-
#: admin/mscan/mscan.php:
|
8607 |
msgid "Edit your theme's header.php file and delete this code: "
|
8608 |
msgstr ""
|
8609 |
|
8610 |
-
#: admin/mscan/mscan.php:
|
8611 |
msgid ""
|
8612 |
"Delete this file in your theme's root folder: nav.php. Login to your web "
|
8613 |
"host control panel, login to your WP Database using phpMyAdmin and delete "
|
@@ -8616,102 +8605,102 @@ msgid ""
|
|
8616 |
"any that you do see."
|
8617 |
msgstr ""
|
8618 |
|
8619 |
-
#: admin/mscan/mscan.php:
|
8620 |
msgid "DB Table, Column and Row ID"
|
8621 |
msgstr ""
|
8622 |
|
8623 |
-
#: admin/mscan/mscan.php:
|
8624 |
msgid "Steps to view the database data that MScan detected as suspicious"
|
8625 |
msgstr ""
|
8626 |
|
8627 |
-
#: admin/mscan/mscan.php:
|
8628 |
msgid ""
|
8629 |
"Login to your web host control panel, login to your WP Database using "
|
8630 |
"phpMyAdmin and check the data in the DB Table, Column and Row ID shown "
|
8631 |
"above. Note: Look for code that matches the MScan Pattern Match."
|
8632 |
msgstr ""
|
8633 |
|
8634 |
-
#: admin/mscan/mscan.php:
|
8635 |
-
#: admin/mscan/mscan.php:
|
8636 |
msgid "Database scanning uses pattern matching scanning."
|
8637 |
msgstr ""
|
8638 |
|
8639 |
-
#: admin/mscan/mscan.php:
|
8640 |
-
#: admin/mscan/mscan.php:
|
8641 |
msgid ""
|
8642 |
"Pattern matching scan results will usually detect some false positive "
|
8643 |
"matches."
|
8644 |
msgstr ""
|
8645 |
|
8646 |
-
#: admin/mscan/mscan.php:
|
8647 |
msgid ""
|
8648 |
"This form allows you to view, ignore or unignore suspicious DB Entries. "
|
8649 |
"Note: The view option displays the DB Table, Column, Row ID and the MScan "
|
8650 |
"Pattern Match that was detected by the MScan scan."
|
8651 |
msgstr ""
|
8652 |
|
8653 |
-
#: admin/mscan/mscan.php:
|
8654 |
msgid "Before deleting any database data make a backup of your database."
|
8655 |
msgstr ""
|
8656 |
|
8657 |
-
#: admin/mscan/mscan.php:
|
8658 |
-
#: admin/mscan/mscan.php:
|
8659 |
msgid ""
|
8660 |
"Use phpMyAdmin or a similar tool to check your database Row where the "
|
8661 |
"suspicious code was found."
|
8662 |
msgstr ""
|
8663 |
|
8664 |
-
#: admin/mscan/mscan.php:
|
8665 |
-
#: admin/mscan/mscan.php:
|
8666 |
msgid ""
|
8667 |
"When you ignore a DB Entry it will no longer be scanned in any future scans. "
|
8668 |
"When you unignore an ignored DB Entry it will be scanned in future scans."
|
8669 |
msgstr ""
|
8670 |
|
8671 |
-
#: admin/mscan/mscan.php:
|
8672 |
msgid "View<br>DB Entry"
|
8673 |
msgstr ""
|
8674 |
|
8675 |
-
#: admin/mscan/mscan.php:
|
8676 |
msgid "Ignore<br>DB Entry"
|
8677 |
msgstr ""
|
8678 |
|
8679 |
-
#: admin/mscan/mscan.php:
|
8680 |
msgid "Unignore<br>DB Entry"
|
8681 |
msgstr ""
|
8682 |
|
8683 |
-
#: admin/mscan/mscan.php:
|
8684 |
-
#: admin/mscan/mscan.php:
|
8685 |
msgid "DB Table"
|
8686 |
msgstr ""
|
8687 |
|
8688 |
-
#: admin/mscan/mscan.php:
|
8689 |
-
#: admin/mscan/mscan.php:
|
8690 |
msgid "DB Column"
|
8691 |
msgstr ""
|
8692 |
|
8693 |
-
#: admin/mscan/mscan.php:
|
8694 |
-
#: admin/mscan/mscan.php:
|
8695 |
msgid "DB Row ID"
|
8696 |
msgstr ""
|
8697 |
|
8698 |
-
#: admin/mscan/mscan.php:
|
8699 |
msgid "Pattern<br>Match"
|
8700 |
msgstr ""
|
8701 |
|
8702 |
-
#: admin/mscan/mscan.php:
|
8703 |
msgid "Ignored DB Entry"
|
8704 |
msgstr ""
|
8705 |
|
8706 |
-
#: admin/mscan/mscan.php:
|
8707 |
msgid "Suspicious DB Entry"
|
8708 |
msgstr ""
|
8709 |
|
8710 |
-
#: admin/mscan/mscan.php:
|
8711 |
msgid "No Suspicious DB Entries were detected"
|
8712 |
msgstr ""
|
8713 |
|
8714 |
-
#: admin/mscan/mscan.php:
|
8715 |
msgid ""
|
8716 |
"View DB Entry Option: Selecting the View DB Entry Checkbox Form option will "
|
8717 |
"display the contents of the DB Table, Column and Row ID that you have "
|
@@ -8729,183 +8718,183 @@ msgid ""
|
|
8729 |
"OK to proceed or click Cancel"
|
8730 |
msgstr ""
|
8731 |
|
8732 |
-
#: admin/mscan/mscan.php:
|
8733 |
msgid "Click the Reset Last Modified Time in DB button"
|
8734 |
msgstr ""
|
8735 |
|
8736 |
-
#: admin/mscan/mscan.php:
|
8737 |
msgid "to set the"
|
8738 |
msgstr ""
|
8739 |
|
8740 |
-
#: admin/mscan/mscan.php:
|
8741 |
msgid "Last Modified Time in DB:"
|
8742 |
msgstr ""
|
8743 |
|
8744 |
-
#: admin/mscan/mscan.php:
|
8745 |
msgid "MScan Log File Size: "
|
8746 |
msgstr ""
|
8747 |
|
8748 |
-
#: admin/mscan/mscan.php:
|
8749 |
msgid ""
|
8750 |
"The Display & Alert Options Email Logging options will only send log files "
|
8751 |
"up to 2MB in size."
|
8752 |
msgstr ""
|
8753 |
|
8754 |
-
#: admin/mscan/mscan.php:
|
8755 |
msgid ""
|
8756 |
"Copy and paste the MScan Log file contents into a Notepad text file on your "
|
8757 |
"computer and save it."
|
8758 |
msgstr ""
|
8759 |
|
8760 |
-
#: admin/mscan/mscan.php:
|
8761 |
msgid "MScan Log Last Modified Time:"
|
8762 |
msgstr ""
|
8763 |
|
8764 |
-
#: admin/mscan/mscan.php:
|
8765 |
msgid "Last Modified Time in File:"
|
8766 |
msgstr ""
|
8767 |
|
8768 |
-
#: admin/mscan/mscan.php:
|
8769 |
msgid ""
|
8770 |
"Success! Your MScan Log has been deleted and replaced with a new blank MScan "
|
8771 |
"Log file."
|
8772 |
msgstr ""
|
8773 |
|
8774 |
-
#: admin/mscan/mscan.php:
|
8775 |
msgid "Clicking OK will delete the contents of your MScan Log file."
|
8776 |
msgstr ""
|
8777 |
|
8778 |
-
#: admin/mscan/mscan.php:
|
8779 |
msgid ""
|
8780 |
"The MScan Log File Was Not Found! Check that the file really exists here - /"
|
8781 |
msgstr ""
|
8782 |
|
8783 |
-
#: admin/mscan/mscan.php:
|
8784 |
msgid "/bps-backup/logs/mscan_log.txt and is named correctly."
|
8785 |
msgstr ""
|
8786 |
|
8787 |
-
#: admin/mscan/mscan.php:
|
8788 |
msgid "File Open and Write test successful! Your MScan Log file is writable."
|
8789 |
msgstr ""
|
8790 |
|
8791 |
-
#: admin/mscan/mscan.php:
|
8792 |
msgid "Success! Your MScan Log file has been updated."
|
8793 |
msgstr ""
|
8794 |
|
8795 |
-
#: admin/mscan/mscan.php:
|
8796 |
msgid "Click OK to save the MScan Report or click Cancel."
|
8797 |
msgstr ""
|
8798 |
|
8799 |
-
#: admin/mscan/mscan.php:
|
8800 |
msgid ""
|
8801 |
"No Scan Results To Display: No scans have been run yet or you clicked the "
|
8802 |
"MScan Reset button."
|
8803 |
msgstr ""
|
8804 |
|
8805 |
-
#: admin/mscan/mscan.php:
|
8806 |
msgid "Scan Date|Time: "
|
8807 |
msgstr ""
|
8808 |
|
8809 |
-
#: admin/mscan/mscan.php:
|
8810 |
msgid "Website: "
|
8811 |
msgstr ""
|
8812 |
|
8813 |
-
#: admin/mscan/mscan.php:
|
8814 |
msgid "Scan Completion Time: "
|
8815 |
msgstr ""
|
8816 |
|
8817 |
-
#: admin/mscan/mscan.php:
|
8818 |
-
#: admin/mscan/mscan.php:
|
8819 |
msgid "Total Files Scanned: "
|
8820 |
msgstr ""
|
8821 |
|
8822 |
-
#: admin/mscan/mscan.php:
|
8823 |
msgid "Total Skipped Files: "
|
8824 |
msgstr ""
|
8825 |
|
8826 |
-
#: admin/mscan/mscan.php:
|
8827 |
msgid "Total Suspicious Files: "
|
8828 |
msgstr ""
|
8829 |
|
8830 |
-
#: admin/mscan/mscan.php:
|
8831 |
msgid "Total Suspicious DB Entries: "
|
8832 |
msgstr ""
|
8833 |
|
8834 |
-
#: admin/mscan/mscan.php:
|
8835 |
msgid "MScan Option Settings: "
|
8836 |
msgstr ""
|
8837 |
|
8838 |
-
#: admin/mscan/mscan.php:
|
8839 |
msgid "Website Folders & Files To Scan: "
|
8840 |
msgstr ""
|
8841 |
|
8842 |
-
#: admin/mscan/mscan.php:
|
8843 |
-
#: admin/mscan/mscan.php:
|
8844 |
msgid "None"
|
8845 |
msgstr ""
|
8846 |
|
8847 |
-
#: admin/mscan/mscan.php:
|
8848 |
msgid "Excluded Folders: "
|
8849 |
msgstr ""
|
8850 |
|
8851 |
-
#: admin/mscan/mscan.php:
|
8852 |
msgid "Max File Size Limit to Scan: "
|
8853 |
msgstr ""
|
8854 |
|
8855 |
-
#: admin/mscan/mscan.php:
|
8856 |
msgid "Max Time Limit to Scan: "
|
8857 |
msgstr ""
|
8858 |
|
8859 |
-
#: admin/mscan/mscan.php:
|
8860 |
msgid "Scan Database: "
|
8861 |
msgstr ""
|
8862 |
|
8863 |
-
#: admin/mscan/mscan.php:
|
8864 |
msgid "Scan Skipped Files Only: "
|
8865 |
msgstr ""
|
8866 |
|
8867 |
-
#: admin/mscan/mscan.php:
|
8868 |
msgid "Automatically Delete /tmp Files: "
|
8869 |
msgstr ""
|
8870 |
|
8871 |
-
#: admin/mscan/mscan.php:
|
8872 |
msgid "Exclude /tmp Files: "
|
8873 |
msgstr ""
|
8874 |
|
8875 |
-
#: admin/mscan/mscan.php:
|
8876 |
msgid "Scheduled Scan Frequency: "
|
8877 |
msgstr ""
|
8878 |
|
8879 |
-
#: admin/mscan/mscan.php:
|
8880 |
msgid "WP Core|Plugin|Theme File Hashes: "
|
8881 |
msgstr ""
|
8882 |
|
8883 |
-
#: admin/mscan/mscan.php:
|
8884 |
msgid "WP Core Hash File Version: "
|
8885 |
msgstr ""
|
8886 |
|
8887 |
-
#: admin/mscan/mscan.php:
|
8888 |
msgid "WP Installed Version: "
|
8889 |
msgstr ""
|
8890 |
|
8891 |
-
#: admin/mscan/mscan.php:
|
8892 |
-
#: admin/mscan/mscan.php:
|
8893 |
msgid "Error|Problem: "
|
8894 |
msgstr ""
|
8895 |
|
8896 |
-
#: admin/mscan/mscan.php:
|
8897 |
msgid "The WP Core Hash File Does Not Exist"
|
8898 |
msgstr ""
|
8899 |
|
8900 |
-
#: admin/mscan/mscan.php:
|
8901 |
msgid "Plugin File Hashes: "
|
8902 |
msgstr ""
|
8903 |
|
8904 |
-
#: admin/mscan/mscan.php:
|
8905 |
msgid "The Plugin Hash File Does Not Exist"
|
8906 |
msgstr ""
|
8907 |
|
8908 |
-
#: admin/mscan/mscan.php:
|
8909 |
msgid ""
|
8910 |
"File hashes do not exist for this plugin. This plugin's files were not "
|
8911 |
"scanned. If you would like to scan this plugin's files then use the \"Upload "
|
@@ -8914,7 +8903,7 @@ msgid ""
|
|
8914 |
"\"Upload Plugin Zip Files\" help section for more help info."
|
8915 |
msgstr ""
|
8916 |
|
8917 |
-
#: admin/mscan/mscan.php:
|
8918 |
msgid ""
|
8919 |
"File hashes do not exist for this theme. This theme's files were not "
|
8920 |
"scanned. If you would like to scan this themes's files then use the \"Upload "
|
@@ -8923,43 +8912,43 @@ msgid ""
|
|
8923 |
"\"Upload Theme Zip Files\" help section for more help info."
|
8924 |
msgstr ""
|
8925 |
|
8926 |
-
#: admin/mscan/mscan.php:
|
8927 |
-
#: admin/mscan/mscan.php:
|
8928 |
msgid " Plugin Hash File Version: "
|
8929 |
msgstr ""
|
8930 |
|
8931 |
-
#: admin/mscan/mscan.php:
|
8932 |
-
#: admin/mscan/mscan.php:
|
8933 |
-
#: admin/mscan/mscan.php:
|
8934 |
msgid " Installed Version: "
|
8935 |
msgstr ""
|
8936 |
|
8937 |
-
#: admin/mscan/mscan.php:
|
8938 |
msgid "No File Hashes for This Plugin"
|
8939 |
msgstr ""
|
8940 |
|
8941 |
-
#: admin/mscan/mscan.php:
|
8942 |
msgid "Theme File Hashes: "
|
8943 |
msgstr ""
|
8944 |
|
8945 |
-
#: admin/mscan/mscan.php:
|
8946 |
msgid "The Theme Hash File Does Not Exist"
|
8947 |
msgstr ""
|
8948 |
|
8949 |
-
#: admin/mscan/mscan.php:
|
8950 |
-
#: admin/mscan/mscan.php:
|
8951 |
msgid " Theme Hash File Version: "
|
8952 |
msgstr ""
|
8953 |
|
8954 |
-
#: admin/mscan/mscan.php:
|
8955 |
msgid "No File Hashes for This Theme"
|
8956 |
msgstr ""
|
8957 |
|
8958 |
-
#: admin/mscan/mscan.php:
|
8959 |
msgid "Scan Results "
|
8960 |
msgstr ""
|
8961 |
|
8962 |
-
#: admin/mscan/mscan.php:
|
8963 |
msgid ""
|
8964 |
"You can View, Ignore and Delete files detected as suspicious using the View|"
|
8965 |
"Ignore|Delete Suspicious Files Form on the MScan Scan tab page. Before "
|
@@ -8967,92 +8956,92 @@ msgid ""
|
|
8967 |
"hosting account."
|
8968 |
msgstr ""
|
8969 |
|
8970 |
-
#: admin/mscan/mscan.php:
|
8971 |
msgid "File Hash or Pattern Match"
|
8972 |
msgstr ""
|
8973 |
|
8974 |
-
#: admin/mscan/mscan.php:
|
8975 |
-
#: admin/mscan/mscan.php:
|
8976 |
msgid "Scan Time"
|
8977 |
msgstr ""
|
8978 |
|
8979 |
-
#: admin/mscan/mscan.php:
|
8980 |
msgid ""
|
8981 |
"You can View, Ignore and Unignore suspicious DB Entries using the View|"
|
8982 |
"Ignore Suspicious DB Entries Form on the MScan Scan tab page. Before "
|
8983 |
"deleting any database data make a backup of your database."
|
8984 |
msgstr ""
|
8985 |
|
8986 |
-
#: admin/mscan/mscan.php:
|
8987 |
msgid "Pattern Match"
|
8988 |
msgstr ""
|
8989 |
|
8990 |
-
#: admin/mscan/mscan.php:
|
8991 |
msgid ""
|
8992 |
"The MScan Report was saved successfully. Saved MScan Reports can be viewed "
|
8993 |
"on the MScan Saved Reports tab page."
|
8994 |
msgstr ""
|
8995 |
|
8996 |
-
#: admin/mscan/mscan.php:
|
8997 |
msgid "The MScan Report was not saved"
|
8998 |
msgstr ""
|
8999 |
|
9000 |
-
#: admin/mscan/mscan.php:
|
9001 |
msgid ""
|
9002 |
"The maximum number of Reports that can be saved is 20 Reports. In order to "
|
9003 |
"save the current Report you will need to delete an older saved Report."
|
9004 |
msgstr ""
|
9005 |
|
9006 |
-
#: admin/mscan/mscan.php:
|
9007 |
msgid ""
|
9008 |
"No Saved MScan Reports To Display: No MScan Reports have been saved yet."
|
9009 |
msgstr ""
|
9010 |
|
9011 |
-
#: admin/mscan/mscan.php:
|
9012 |
msgid "MScan Saved Reports Form"
|
9013 |
msgstr ""
|
9014 |
|
9015 |
-
#: admin/mscan/mscan.php:
|
9016 |
msgid "Report Date"
|
9017 |
msgstr ""
|
9018 |
|
9019 |
-
#: admin/mscan/mscan.php:
|
9020 |
msgid "View Report"
|
9021 |
msgstr ""
|
9022 |
|
9023 |
-
#: admin/mscan/mscan.php:
|
9024 |
msgid "Delete Report"
|
9025 |
msgstr ""
|
9026 |
|
9027 |
-
#: admin/mscan/mscan.php:
|
9028 |
msgid "Click OK to proceed or click Cancel"
|
9029 |
msgstr ""
|
9030 |
|
9031 |
-
#: admin/mscan/mscan.php:
|
9032 |
msgid "View|Delete Reports"
|
9033 |
msgstr ""
|
9034 |
|
9035 |
-
#: admin/mscan/mscan.php:
|
9036 |
msgid "You did not select an MScan Report to view or delete"
|
9037 |
msgstr ""
|
9038 |
|
9039 |
-
#: admin/mscan/mscan.php:
|
9040 |
msgid ""
|
9041 |
"Click the checkbox for the MScan Report that you would like to view or "
|
9042 |
"delete and then click the View|Delete Reports button."
|
9043 |
msgstr ""
|
9044 |
|
9045 |
-
#: admin/mscan/mscan.php:
|
9046 |
msgid "Report: "
|
9047 |
msgstr ""
|
9048 |
|
9049 |
-
#: admin/mscan/mscan.php:
|
9050 |
msgid ""
|
9051 |
" has been deleted. Refresh/reload the page to see current MScan Saved "
|
9052 |
"Reports Form data."
|
9053 |
msgstr ""
|
9054 |
|
9055 |
-
#: admin/mscan/mscan.php:
|
9056 |
msgid ""
|
9057 |
"The MScan Saved Report scan data is displayed below the MScan Saved Reports "
|
9058 |
"Form."
|
@@ -9084,19 +9073,19 @@ msgstr ""
|
|
9084 |
msgid "Logging has been turned On"
|
9085 |
msgstr ""
|
9086 |
|
9087 |
-
#: admin/security-log/security-log.php:
|
9088 |
msgid "Forum Help Links & Bonus Custom Code: "
|
9089 |
msgstr ""
|
9090 |
|
9091 |
-
#: admin/security-log/security-log.php:
|
9092 |
msgid "POST Request Attack Protection"
|
9093 |
msgstr ""
|
9094 |
|
9095 |
-
#: admin/security-log/security-log.php:
|
9096 |
msgid "Security Log General Information"
|
9097 |
msgstr ""
|
9098 |
|
9099 |
-
#: admin/security-log/security-log.php:
|
9100 |
msgid ""
|
9101 |
"To view your Security Log click the View Log button. Your Security Log file "
|
9102 |
"is a plain text static file and not a dynamic file or dynamic display to "
|
@@ -9105,13 +9094,13 @@ msgid ""
|
|
9105 |
"and Time. You can copy, edit and delete this plain text file."
|
9106 |
msgstr ""
|
9107 |
|
9108 |
-
#: admin/security-log/security-log.php:
|
9109 |
msgid ""
|
9110 |
"Security Log Email Alert and Log file option settings are on the Alerts|Logs|"
|
9111 |
"Email Options page."
|
9112 |
msgstr ""
|
9113 |
|
9114 |
-
#: admin/security-log/security-log.php:
|
9115 |
msgid ""
|
9116 |
"If a particular User Agent|Bot is generating excessive log entries you can "
|
9117 |
"add it to Add User Agents|Bots to Ignore|Not Log tool and that User Agent|"
|
@@ -9119,7 +9108,7 @@ msgid ""
|
|
9119 |
"help section."
|
9120 |
msgstr ""
|
9121 |
|
9122 |
-
#: admin/security-log/security-log.php:
|
9123 |
msgid ""
|
9124 |
"BPS logs all 403 errors, but a 403 error may not necessarily be caused by "
|
9125 |
"BPS. Use the troubleshooting steps in the BPS Troubleshooting Steps link at "
|
@@ -9127,7 +9116,7 @@ msgid ""
|
|
9127 |
"403 error is being caused by BPS."
|
9128 |
msgstr ""
|
9129 |
|
9130 |
-
#: admin/security-log/security-log.php:
|
9131 |
msgid ""
|
9132 |
"The Security Log logs 400, 403, 405 and 410 HTTP Response Status Codes by "
|
9133 |
"default. You can also log 404 HTTP Response Status Codes by opening this BPS "
|
@@ -9138,17 +9127,17 @@ msgid ""
|
|
9138 |
"the "
|
9139 |
msgstr ""
|
9140 |
|
9141 |
-
#: admin/security-log/security-log.php:
|
9142 |
-
#: admin/security-log/security-log.php:
|
9143 |
msgid "Total # of Security Log Entries by Type"
|
9144 |
msgstr ""
|
9145 |
|
9146 |
-
#: admin/security-log/security-log.php:
|
9147 |
msgid ""
|
9148 |
" help section below for a complete list of BPS Security Log Entry Types."
|
9149 |
msgstr ""
|
9150 |
|
9151 |
-
#: admin/security-log/security-log.php:
|
9152 |
msgid ""
|
9153 |
"Displays the total number of each type of Security Log Entry in your "
|
9154 |
"Security Log file. The Total # of Security Log Entries by Type is also added "
|
@@ -9161,30 +9150,30 @@ msgid ""
|
|
9161 |
"Security Log Entry Types. BPS Pro has a total of 27 Security Log Entry Types."
|
9162 |
msgstr ""
|
9163 |
|
9164 |
-
#: admin/security-log/security-log.php:
|
9165 |
msgid "HTTP Response Status Codes"
|
9166 |
msgstr ""
|
9167 |
|
9168 |
-
#: admin/security-log/security-log.php:
|
9169 |
msgid ""
|
9170 |
"400 Bad Request - The request could not be understood by the server due to "
|
9171 |
"malformed syntax."
|
9172 |
msgstr ""
|
9173 |
|
9174 |
-
#: admin/security-log/security-log.php:
|
9175 |
msgid ""
|
9176 |
"403 Forbidden - The Server understood the request, but is refusing to "
|
9177 |
"fulfill it."
|
9178 |
msgstr ""
|
9179 |
|
9180 |
-
#: admin/security-log/security-log.php:
|
9181 |
msgid ""
|
9182 |
"404 Not Found - The Server has not found anything matching the Request-URI|"
|
9183 |
"URL. No indication is given of whether the condition is temporary or "
|
9184 |
"permanent."
|
9185 |
msgstr ""
|
9186 |
|
9187 |
-
#: admin/security-log/security-log.php:
|
9188 |
msgid ""
|
9189 |
"405 Method Not Allowed - The method specified in the Request-Line is not "
|
9190 |
"allowed for the resource identified by the Request-URI. The response MUST "
|
@@ -9194,18 +9183,18 @@ msgid ""
|
|
9194 |
"Methods."
|
9195 |
msgstr ""
|
9196 |
|
9197 |
-
#: admin/security-log/security-log.php:
|
9198 |
msgid ""
|
9199 |
"410 Gone - The requested resource is no longer available at the Server/site "
|
9200 |
"and no forwarding address is known. This condition is expected to be "
|
9201 |
"considered permanent."
|
9202 |
msgstr ""
|
9203 |
|
9204 |
-
#: admin/security-log/security-log.php:
|
9205 |
msgid "Security Log File Size"
|
9206 |
msgstr ""
|
9207 |
|
9208 |
-
#: admin/security-log/security-log.php:
|
9209 |
msgid ""
|
9210 |
"Displays the size of your Security Log file. 500KB is the optimum "
|
9211 |
"recommended log file size setting that you should choose for your log file "
|
@@ -9213,50 +9202,50 @@ msgid ""
|
|
9213 |
"Log file."
|
9214 |
msgstr ""
|
9215 |
|
9216 |
-
#: admin/security-log/security-log.php:
|
9217 |
msgid "Security Log Status:"
|
9218 |
msgstr ""
|
9219 |
|
9220 |
-
#: admin/security-log/security-log.php:
|
9221 |
msgid "Displays either Logging is Turned On or Logging is Turned Off."
|
9222 |
msgstr ""
|
9223 |
|
9224 |
-
#: admin/security-log/security-log.php:
|
9225 |
msgid "Security Log Last Modified Time:"
|
9226 |
msgstr ""
|
9227 |
|
9228 |
-
#: admin/security-log/security-log.php:
|
9229 |
msgid "Displays the last time a Security Log entry was logged."
|
9230 |
msgstr ""
|
9231 |
|
9232 |
-
#: admin/security-log/security-log.php:
|
9233 |
msgid "Turn Off Logging"
|
9234 |
msgstr ""
|
9235 |
|
9236 |
-
#: admin/security-log/security-log.php:
|
9237 |
msgid "Turns Off HTTP 400, 403, 404, 405 & 410 Security Logging."
|
9238 |
msgstr ""
|
9239 |
|
9240 |
-
#: admin/security-log/security-log.php:
|
9241 |
msgid "Turn On Logging"
|
9242 |
msgstr ""
|
9243 |
|
9244 |
-
#: admin/security-log/security-log.php:
|
9245 |
msgid "Turns On HTTP 400, 403, 404, 405 & 410 Security Logging."
|
9246 |
msgstr ""
|
9247 |
|
9248 |
-
#: admin/security-log/security-log.php:
|
9249 |
msgid ""
|
9250 |
"Clicking the Delete Log button will delete the entire contents of your "
|
9251 |
"Security Log File."
|
9252 |
msgstr ""
|
9253 |
|
9254 |
-
#: admin/security-log/security-log.php:
|
9255 |
-
#: admin/security-log/security-log.php:
|
9256 |
msgid "POST Request Body Data"
|
9257 |
msgstr ""
|
9258 |
|
9259 |
-
#: admin/security-log/security-log.php:
|
9260 |
msgid ""
|
9261 |
"The POST Request Body Data option settings only affect the REQUEST BODY "
|
9262 |
"Security Log field in your Security Log entries when a POST Request is "
|
@@ -9267,7 +9256,7 @@ msgid ""
|
|
9267 |
"but not all POST Request Attacks will be captured/logged in the Security Log."
|
9268 |
msgstr ""
|
9269 |
|
9270 |
-
#: admin/security-log/security-log.php:
|
9271 |
msgid ""
|
9272 |
"The default POST Request Body Data option setting is \"Do Not Log POST "
|
9273 |
"Request Body Data (0KB)\", which means do not capture/log the POST Request "
|
@@ -9282,7 +9271,7 @@ msgid ""
|
|
9282 |
"Maximum...\" POST Request Body Data option settings."
|
9283 |
msgstr ""
|
9284 |
|
9285 |
-
#: admin/security-log/security-log.php:
|
9286 |
msgid ""
|
9287 |
"The \"Log Minimum POST Request Body Data (5KB)\" option setting will capture/"
|
9288 |
"log the first 500 characters or 5KB of hacker code used to attack your "
|
@@ -9294,7 +9283,7 @@ msgid ""
|
|
9294 |
"field. Hacker scripts typically range in size from 20KB to 100KB on average."
|
9295 |
msgstr ""
|
9296 |
|
9297 |
-
#: admin/security-log/security-log.php:
|
9298 |
msgid ""
|
9299 |
"If you are using email security protection on your computer then your "
|
9300 |
"automatically zipped and emailed BPS Security Log files may be seen as "
|
@@ -9307,12 +9296,12 @@ msgid ""
|
|
9307 |
"option setting instead."
|
9308 |
msgstr ""
|
9309 |
|
9310 |
-
#: admin/security-log/security-log.php:
|
9311 |
msgid ""
|
9312 |
"Ignoring|Not Logging User Agents|Bots - Allowing|Logging User Agents|Bots"
|
9313 |
msgstr ""
|
9314 |
|
9315 |
-
#: admin/security-log/security-log.php:
|
9316 |
msgid ""
|
9317 |
"Adding or Removing User Agents|Bots adds or removes User Agents|Bots to your "
|
9318 |
"Database and also writes new code to the 403.php Security Logging template. "
|
@@ -9327,7 +9316,7 @@ msgid ""
|
|
9327 |
"file."
|
9328 |
msgstr ""
|
9329 |
|
9330 |
-
#: admin/security-log/security-log.php:
|
9331 |
msgid ""
|
9332 |
"If a particular User Agent|Bot is being logged excessively in your Security "
|
9333 |
"Log file you can Ignore|Not Log that particular User Agent|Bot based on the "
|
@@ -9340,22 +9329,22 @@ msgid ""
|
|
9340 |
"facebook User Agent|Bot."
|
9341 |
msgstr ""
|
9342 |
|
9343 |
-
#: admin/security-log/security-log.php:
|
9344 |
-
#: admin/security-log/security-log.php:
|
9345 |
msgid "Add User Agents|Bots to Ignore|Not Log"
|
9346 |
msgstr ""
|
9347 |
|
9348 |
-
#: admin/security-log/security-log.php:
|
9349 |
msgid ""
|
9350 |
"Add the User Agent|Bot names you would like to Ignore|Not Log in your "
|
9351 |
"Security Log. These code characters are not allowed to be used: "
|
9352 |
msgstr ""
|
9353 |
|
9354 |
-
#: admin/security-log/security-log.php:
|
9355 |
msgid "Removing User Agents|Bots to Allow|Log"
|
9356 |
msgstr ""
|
9357 |
|
9358 |
-
#: admin/security-log/security-log.php:
|
9359 |
msgid ""
|
9360 |
"To search for ALL User Agents|Bots to remove/delete from your database leave "
|
9361 |
"the text box blank and click the Remove|Allow button. You will see a "
|
@@ -9368,11 +9357,11 @@ msgid ""
|
|
9368 |
"Agents|Bots logged again in your Security Log."
|
9369 |
msgstr ""
|
9370 |
|
9371 |
-
#: admin/security-log/security-log.php:
|
9372 |
msgid "View Log"
|
9373 |
msgstr ""
|
9374 |
|
9375 |
-
#: admin/security-log/security-log.php:
|
9376 |
msgid ""
|
9377 |
"In previous versions of BPS the Security Log was displayed open by default. "
|
9378 |
"The Security Log is now closed by default due to problems with ModSecurity "
|
@@ -9382,7 +9371,7 @@ msgid ""
|
|
9382 |
"file manager and opening the Security Log file located here "
|
9383 |
msgstr ""
|
9384 |
|
9385 |
-
#: admin/security-log/security-log.php:
|
9386 |
msgid ""
|
9387 |
"The new View Log feature also resolves another problem, which is if the "
|
9388 |
"Security Log file automation is not working due to WP Cron jobs being "
|
@@ -9395,275 +9384,275 @@ msgid ""
|
|
9395 |
"button."
|
9396 |
msgstr ""
|
9397 |
|
9398 |
-
#: admin/security-log/security-log.php:
|
9399 |
msgid "There are no Security Log Entries yet."
|
9400 |
msgstr ""
|
9401 |
|
9402 |
-
#: admin/security-log/security-log.php:
|
9403 |
msgid "Total "
|
9404 |
msgstr ""
|
9405 |
|
9406 |
-
#: admin/security-log/security-log.php:
|
9407 |
msgid " Log Entries: "
|
9408 |
msgstr ""
|
9409 |
|
9410 |
-
#: admin/security-log/security-log.php:
|
9411 |
-
#: admin/security-log/security-log.php:
|
9412 |
msgid "Security Log File Size: "
|
9413 |
msgstr ""
|
9414 |
|
9415 |
-
#: admin/security-log/security-log.php:
|
9416 |
msgid ""
|
9417 |
"Your Security Log file is larger than 2MB. It appears that BPS is unable to "
|
9418 |
"automatically zip, email and delete your Security Log file."
|
9419 |
msgstr ""
|
9420 |
|
9421 |
-
#: admin/security-log/security-log.php:
|
9422 |
msgid "Check your Email Alerts & Log File Options."
|
9423 |
msgstr ""
|
9424 |
|
9425 |
-
#: admin/security-log/security-log.php:
|
9426 |
msgid ""
|
9427 |
"You can manually delete the contents of this log file by clicking the Delete "
|
9428 |
"Log button."
|
9429 |
msgstr ""
|
9430 |
|
9431 |
-
#: admin/security-log/security-log.php:
|
9432 |
-
#: admin/security-log/security-log.php:
|
9433 |
msgid "Security Log Status: "
|
9434 |
msgstr ""
|
9435 |
|
9436 |
-
#: admin/security-log/security-log.php:
|
9437 |
msgid "Logging is Turned Off"
|
9438 |
msgstr ""
|
9439 |
|
9440 |
-
#: admin/security-log/security-log.php:
|
9441 |
msgid "Logging is Turned On"
|
9442 |
msgstr ""
|
9443 |
|
9444 |
-
#: admin/security-log/security-log.php:
|
9445 |
msgid "Security Log Last Modified Time: "
|
9446 |
msgstr ""
|
9447 |
|
9448 |
-
#: admin/security-log/security-log.php:
|
9449 |
msgid ""
|
9450 |
"Success! Your Security Log file has been deleted and replaced with a new "
|
9451 |
"blank Security Log file."
|
9452 |
msgstr ""
|
9453 |
|
9454 |
-
#: admin/security-log/security-log.php:
|
9455 |
msgid "Error: "
|
9456 |
msgstr ""
|
9457 |
|
9458 |
-
#: admin/security-log/security-log.php:
|
9459 |
msgid ""
|
9460 |
" User Agent|Bot was not successfully added. These code characters are not "
|
9461 |
"allowed to be used: "
|
9462 |
msgstr ""
|
9463 |
|
9464 |
-
#: admin/security-log/security-log.php:
|
9465 |
msgid " Click the Read Help button for examples of valid User Agent|Bot names."
|
9466 |
msgstr ""
|
9467 |
|
9468 |
-
#: admin/security-log/security-log.php:
|
9469 |
msgid "Success! "
|
9470 |
msgstr ""
|
9471 |
|
9472 |
-
#: admin/security-log/security-log.php:
|
9473 |
msgid " User Agent|Bot has been added to your DB. "
|
9474 |
msgstr ""
|
9475 |
|
9476 |
-
#: admin/security-log/security-log.php:
|
9477 |
msgid ""
|
9478 |
"Error: You did not enter a User Agent|Bot name. User Agent|Bot was not "
|
9479 |
"successfully added."
|
9480 |
msgstr ""
|
9481 |
|
9482 |
-
#: admin/security-log/security-log.php:
|
9483 |
-
#: admin/security-log/security-log.php:
|
9484 |
#: admin/wizard/wizard.php:266 admin/wizard/wizard.php:272
|
9485 |
#: admin/wizard/wizard.php:278 admin/wizard/wizard.php:284
|
9486 |
msgid "Error: The "
|
9487 |
msgstr ""
|
9488 |
|
9489 |
-
#: admin/security-log/security-log.php:
|
9490 |
-
#: admin/security-log/security-log.php:
|
9491 |
msgid " does not exist."
|
9492 |
msgstr ""
|
9493 |
|
9494 |
-
#: admin/security-log/security-log.php:
|
9495 |
-
#: admin/security-log/security-log.php:
|
9496 |
-
#: admin/security-log/security-log.php:
|
9497 |
msgid "Error: Unable to write to file "
|
9498 |
msgstr ""
|
9499 |
|
9500 |
-
#: admin/security-log/security-log.php:
|
9501 |
-
#: admin/security-log/security-log.php:
|
9502 |
-
#: admin/security-log/security-log.php:
|
9503 |
msgid ""
|
9504 |
". Check that file permissions allow writing to this file. If you have a DSO "
|
9505 |
"Server check file and folder Ownership."
|
9506 |
msgstr ""
|
9507 |
|
9508 |
-
#: admin/security-log/security-log.php:
|
9509 |
msgid ""
|
9510 |
"Success! The BPS 403.php Security Logging template file has been updated. "
|
9511 |
"This User Agent|Bot will be no longer be logged in your Security Log."
|
9512 |
msgstr ""
|
9513 |
|
9514 |
-
#: admin/security-log/security-log.php:
|
9515 |
msgid " Do Not Log POST Request Body Data (0KB)"
|
9516 |
msgstr ""
|
9517 |
|
9518 |
-
#: admin/security-log/security-log.php:
|
9519 |
msgid " Log Minimum POST Request Body Data (5KB)"
|
9520 |
msgstr ""
|
9521 |
|
9522 |
-
#: admin/security-log/security-log.php:
|
9523 |
msgid " Log Maximum POST Request Body Data (250KB)"
|
9524 |
msgstr ""
|
9525 |
|
9526 |
-
#: admin/security-log/security-log.php:
|
9527 |
msgid "Click the Question Mark Help button for examples"
|
9528 |
msgstr ""
|
9529 |
|
9530 |
-
#: admin/security-log/security-log.php:
|
9531 |
msgid ""
|
9532 |
"Clicking OK will Add the User Agent|Bot name you have entered to your DB and "
|
9533 |
"the 403.php Security Logging template."
|
9534 |
msgstr ""
|
9535 |
|
9536 |
-
#: admin/security-log/security-log.php:
|
9537 |
msgid ""
|
9538 |
"Security logging checks are done by the 403.php Security Logging file and "
|
9539 |
"not by DB Queries."
|
9540 |
msgstr ""
|
9541 |
|
9542 |
-
#: admin/security-log/security-log.php:
|
9543 |
msgid ""
|
9544 |
"To remove User Agents|Bots from being ignored/not logged use the Remove|"
|
9545 |
"Allow tool."
|
9546 |
msgstr ""
|
9547 |
|
9548 |
-
#: admin/security-log/security-log.php:
|
9549 |
msgid "Remove User Agents|Bots to Allow|Log"
|
9550 |
msgstr ""
|
9551 |
|
9552 |
-
#: admin/security-log/security-log.php:
|
9553 |
msgid ""
|
9554 |
"Clicking OK will search your database and display User Agent|Bot DB search "
|
9555 |
"results in a Dynamic Radio button Form."
|
9556 |
msgstr ""
|
9557 |
|
9558 |
-
#: admin/security-log/security-log.php:
|
9559 |
msgid ""
|
9560 |
"To search for ALL User Agents|Bots to remove/delete from your database leave "
|
9561 |
"the text box blank and click the Remove|Allow button."
|
9562 |
msgstr ""
|
9563 |
|
9564 |
-
#: admin/security-log/security-log.php:
|
9565 |
msgid "Click OK to Turn Off Error Logging or click Cancel."
|
9566 |
msgstr ""
|
9567 |
|
9568 |
-
#: admin/security-log/security-log.php:
|
9569 |
msgid "Click OK to Turn On Logging or click Cancel."
|
9570 |
msgstr ""
|
9571 |
|
9572 |
-
#: admin/security-log/security-log.php:
|
9573 |
msgid "Clicking OK will delete the contents of your Security Log file."
|
9574 |
msgstr ""
|
9575 |
|
9576 |
-
#: admin/security-log/security-log.php:
|
9577 |
-
#: admin/security-log/security-log.php:
|
9578 |
msgid "Remove"
|
9579 |
msgstr ""
|
9580 |
|
9581 |
-
#: admin/security-log/security-log.php:
|
9582 |
#, php-format
|
9583 |
msgid "%s unable to delete row from your DB."
|
9584 |
msgstr ""
|
9585 |
|
9586 |
-
#: admin/security-log/security-log.php:
|
9587 |
#, php-format
|
9588 |
msgid "%s has been deleted from your DB."
|
9589 |
msgstr ""
|
9590 |
|
9591 |
-
#: admin/security-log/security-log.php:
|
9592 |
msgid ""
|
9593 |
"Success! The BPS 403.php Security Logging template file has been updated. "
|
9594 |
"This User Agent|Bot will be logged again in your Security Log."
|
9595 |
msgstr ""
|
9596 |
|
9597 |
-
#: admin/security-log/security-log.php:
|
9598 |
msgid "Error: These code characters are not allowed to be used: "
|
9599 |
msgstr ""
|
9600 |
|
9601 |
-
#: admin/security-log/security-log.php:
|
9602 |
msgid "Search Results For User Agents|Bots To Remove"
|
9603 |
msgstr ""
|
9604 |
|
9605 |
-
#: admin/security-log/security-log.php:
|
9606 |
msgid "User Agents|Bots in DB"
|
9607 |
msgstr ""
|
9608 |
|
9609 |
-
#: admin/security-log/security-log.php:
|
9610 |
msgid "Do Not<br>Remove"
|
9611 |
msgstr ""
|
9612 |
|
9613 |
-
#: admin/security-log/security-log.php:
|
9614 |
msgid "Time Added<br>To DB"
|
9615 |
msgstr ""
|
9616 |
|
9617 |
-
#: admin/security-log/security-log.php:
|
9618 |
msgid ""
|
9619 |
"Your DB Search Results For User Agents|Bots To Remove are displayed below "
|
9620 |
"the Remove|Allow Search tool."
|
9621 |
msgstr ""
|
9622 |
|
9623 |
-
#: admin/security-log/security-log.php:
|
9624 |
msgid ""
|
9625 |
"You do not have any User Agents|Bots in your DB To Remove. An empty/blank "
|
9626 |
"dynamic radio button form is displayed below the Remove|Allow Search tool "
|
9627 |
"since you do not have any User Agents|Bot to remove."
|
9628 |
msgstr ""
|
9629 |
|
9630 |
-
#: admin/security-log/security-log.php:
|
9631 |
msgid ""
|
9632 |
"Clicking OK will Remove the User Agent|Bot DB entries for any Remove Radio "
|
9633 |
"button selections you have made. User Agents|Bots will also be removed from "
|
9634 |
"the 403.php Security Logging template."
|
9635 |
msgstr ""
|
9636 |
|
9637 |
-
#: admin/security-log/security-log.php:
|
9638 |
msgid "To add a User Agent|Bot, use the Add|Ignore tool."
|
9639 |
msgstr ""
|
9640 |
|
9641 |
-
#: admin/security-log/security-log.php:
|
9642 |
msgid "Clicking OK will display the contents of your Security Log file."
|
9643 |
msgstr ""
|
9644 |
|
9645 |
-
#: admin/security-log/security-log.php:
|
9646 |
msgid "Click OK to view the Log file or click Cancel."
|
9647 |
msgstr ""
|
9648 |
|
9649 |
-
#: admin/security-log/security-log.php:
|
9650 |
msgid ""
|
9651 |
"The Security Log File Was Not Found! Check that the file really exists here "
|
9652 |
"- /"
|
9653 |
msgstr ""
|
9654 |
|
9655 |
-
#: admin/security-log/security-log.php:
|
9656 |
msgid "/bps-backup/logs/http_error_log.txt and is named correctly."
|
9657 |
msgstr ""
|
9658 |
|
9659 |
-
#: admin/security-log/security-log.php:
|
9660 |
msgid ""
|
9661 |
"File Open and Write test successful! Your Security Log file is writable. "
|
9662 |
"Click the View Log button."
|
9663 |
msgstr ""
|
9664 |
|
9665 |
-
#: admin/security-log/security-log.php:
|
9666 |
-
#: admin/security-log/security-log.php:
|
9667 |
msgid "Success! Your Security Log file has been updated."
|
9668 |
msgstr ""
|
9669 |
|
@@ -9679,15 +9668,15 @@ msgstr ""
|
|
9679 |
msgid "File|Folder Permissions & UID"
|
9680 |
msgstr ""
|
9681 |
|
9682 |
-
#: admin/system-info/system-info.php:
|
9683 |
msgid "DSO Server Setup Steps"
|
9684 |
msgstr ""
|
9685 |
|
9686 |
-
#: admin/system-info/system-info.php:
|
9687 |
msgid "File|Folder Diagnostic & Troubleshooting Info"
|
9688 |
msgstr ""
|
9689 |
|
9690 |
-
#: admin/system-info/system-info.php:
|
9691 |
msgid ""
|
9692 |
"The file/folder permissions and UID checks are mainly for diagnostic "
|
9693 |
"troubleshooting so that you can check permissions or the UID of mission "
|
@@ -9696,11 +9685,11 @@ msgid ""
|
|
9696 |
"but this is not an essential or critical thing to do these days."
|
9697 |
msgstr ""
|
9698 |
|
9699 |
-
#: admin/system-info/system-info.php:
|
9700 |
msgid "Script Owner User ID (UID)|File Owner User ID"
|
9701 |
msgstr ""
|
9702 |
|
9703 |
-
#: admin/system-info/system-info.php:
|
9704 |
msgid ""
|
9705 |
"Your Script Owner User ID (UID) and File Owner User ID should match. If they "
|
9706 |
"do not match for any folders then you will need to change the Owner of that "
|
@@ -9708,11 +9697,11 @@ msgid ""
|
|
9708 |
"Setup Steps Forum Help Link at the top of this Question Mark help window."
|
9709 |
msgstr ""
|
9710 |
|
9711 |
-
#: admin/system-info/system-info.php:
|
9712 |
msgid "CGI And DSO File And Folder Permission Recommendations"
|
9713 |
msgstr ""
|
9714 |
|
9715 |
-
#: admin/system-info/system-info.php:
|
9716 |
msgid ""
|
9717 |
"If your Server API (SAPI) is CGI you will see a table displayed with "
|
9718 |
"recommendations for file and folder permissions for CGI. If your SAPI is DSO/"
|
@@ -9720,7 +9709,7 @@ msgid ""
|
|
9720 |
"recommendations for DSO."
|
9721 |
msgstr ""
|
9722 |
|
9723 |
-
#: admin/system-info/system-info.php:
|
9724 |
msgid ""
|
9725 |
"If your Host is using CGI, but they do not allow you to set your folder "
|
9726 |
"permissions more restrictive to 705 and file permissions more restrictive to "
|
@@ -9733,7 +9722,7 @@ msgid ""
|
|
9733 |
"things that they specifically allow or do not allow."
|
9734 |
msgstr ""
|
9735 |
|
9736 |
-
#: admin/system-info/system-info.php:
|
9737 |
msgid ""
|
9738 |
"Most Hosts now use 705 Root folder permissions. Your Host might not be doing "
|
9739 |
"this or allow this, but typically 755 is fine for your Root folder. CGI 604 "
|
@@ -9741,11 +9730,11 @@ msgid ""
|
|
9741 |
"have been discovered with WP or with WP Plugins."
|
9742 |
msgstr ""
|
9743 |
|
9744 |
-
#: admin/system-info/system-info.php:
|
9745 |
msgid "The /"
|
9746 |
msgstr ""
|
9747 |
|
9748 |
-
#: admin/system-info/system-info.php:
|
9749 |
msgid ""
|
9750 |
"/bps-backup/ folder permission recommendation is 755 for CGI or DSO for "
|
9751 |
"compatibility reasons. The /bps-backup folder has a deny all htaccess file "
|
@@ -9753,790 +9742,790 @@ msgid ""
|
|
9753 |
"permissions for this folder are irrelevant."
|
9754 |
msgstr ""
|
9755 |
|
9756 |
-
#: admin/system-info/system-info.php:
|
9757 |
msgid ""
|
9758 |
"Your current file and folder permissions are shown below with suggested/"
|
9759 |
"recommended file and folder permissions. "
|
9760 |
msgstr ""
|
9761 |
|
9762 |
-
#: admin/system-info/system-info.php:
|
9763 |
msgid ""
|
9764 |
"Not all web hosts will allow you to set your folder permissions to these "
|
9765 |
"Recommended folder permissions."
|
9766 |
msgstr ""
|
9767 |
|
9768 |
-
#: admin/system-info/system-info.php:
|
9769 |
msgid ""
|
9770 |
"If you see 500 errors after changing your folder permissions than change "
|
9771 |
"them back to what they were before."
|
9772 |
msgstr ""
|
9773 |
|
9774 |
-
#: admin/system-info/system-info.php:
|
9775 |
msgid "BPS Pro Video Tutorial links can be found in the Help & FAQ pages."
|
9776 |
msgstr ""
|
9777 |
|
9778 |
-
#: admin/system-info/system-info.php:
|
9779 |
msgid "Website|Server Info|Apache Modules|Directives"
|
9780 |
msgstr ""
|
9781 |
|
9782 |
-
#: admin/system-info/system-info.php:
|
9783 |
msgid "Database Info|WordPress Site Info|Misc Checks"
|
9784 |
msgstr ""
|
9785 |
|
9786 |
-
#: admin/system-info/system-info.php:
|
9787 |
-
#: admin/system-info/system-info.php:
|
9788 |
msgid "Server|Website IP Address: "
|
9789 |
msgstr ""
|
9790 |
|
9791 |
-
#: admin/system-info/system-info.php:
|
9792 |
msgid "HTTP_CLIENT_IP IP Address: "
|
9793 |
msgstr ""
|
9794 |
|
9795 |
-
#: admin/system-info/system-info.php:
|
9796 |
msgid "Proxy X-Forwarded-For IP Address: "
|
9797 |
msgstr ""
|
9798 |
|
9799 |
-
#: admin/system-info/system-info.php:
|
9800 |
msgid "Public Internet IP Address (ISP): "
|
9801 |
msgstr ""
|
9802 |
|
9803 |
-
#: admin/system-info/system-info.php:
|
9804 |
msgid "Must-Use Plugins"
|
9805 |
msgstr ""
|
9806 |
|
9807 |
-
#: admin/system-info/system-info.php:
|
9808 |
msgid "Installed"
|
9809 |
msgstr ""
|
9810 |
|
9811 |
-
#: admin/system-info/system-info.php:
|
9812 |
msgid "Themes"
|
9813 |
msgstr ""
|
9814 |
|
9815 |
-
#: admin/system-info/system-info.php:
|
9816 |
msgid "Theme Folder Name"
|
9817 |
msgstr ""
|
9818 |
|
9819 |
-
#: admin/system-info/system-info.php:
|
9820 |
msgid "Website Root URL"
|
9821 |
msgstr ""
|
9822 |
|
9823 |
-
#: admin/system-info/system-info.php:
|
9824 |
msgid "Document Root Path"
|
9825 |
msgstr ""
|
9826 |
|
9827 |
-
#: admin/system-info/system-info.php:
|
9828 |
msgid "WP ABSPATH"
|
9829 |
msgstr ""
|
9830 |
|
9831 |
-
#: admin/system-info/system-info.php:
|
9832 |
msgid "get_home_path()"
|
9833 |
msgstr ""
|
9834 |
|
9835 |
-
#: admin/system-info/system-info.php:
|
9836 |
msgid "Parent Directory"
|
9837 |
msgstr ""
|
9838 |
|
9839 |
-
#: admin/system-info/system-info.php:
|
9840 |
msgid "Server Port"
|
9841 |
msgstr ""
|
9842 |
|
9843 |
-
#: admin/system-info/system-info.php:
|
9844 |
msgid "Server Protocol"
|
9845 |
msgstr ""
|
9846 |
|
9847 |
-
#: admin/system-info/system-info.php:
|
9848 |
msgid "Host by Address"
|
9849 |
msgstr ""
|
9850 |
|
9851 |
-
#: admin/system-info/system-info.php:
|
9852 |
msgid "DNS Name Server"
|
9853 |
msgstr ""
|
9854 |
|
9855 |
-
#: admin/system-info/system-info.php:
|
9856 |
msgid "DNS Name Server Not Available"
|
9857 |
msgstr ""
|
9858 |
|
9859 |
-
#: admin/system-info/system-info.php:
|
9860 |
msgid "Server Type"
|
9861 |
msgstr ""
|
9862 |
|
9863 |
-
#: admin/system-info/system-info.php:
|
9864 |
msgid "Operating System"
|
9865 |
msgstr ""
|
9866 |
|
9867 |
-
#: admin/system-info/system-info.php:
|
9868 |
msgid "WP Filesystem API Method"
|
9869 |
msgstr ""
|
9870 |
|
9871 |
-
#: admin/system-info/system-info.php:
|
9872 |
msgid "Script Owner ID"
|
9873 |
msgstr ""
|
9874 |
|
9875 |
-
#: admin/system-info/system-info.php:
|
9876 |
msgid "File Owner ID"
|
9877 |
msgstr ""
|
9878 |
|
9879 |
-
#: admin/system-info/system-info.php:
|
9880 |
msgid "Script Owner Name"
|
9881 |
msgstr ""
|
9882 |
|
9883 |
-
#: admin/system-info/system-info.php:
|
9884 |
msgid "Server API"
|
9885 |
msgstr ""
|
9886 |
|
9887 |
-
#: admin/system-info/system-info.php:
|
9888 |
msgid " CGI Host Server Type"
|
9889 |
msgstr ""
|
9890 |
|
9891 |
-
#: admin/system-info/system-info.php:
|
9892 |
msgid " DSO Host Server Type"
|
9893 |
msgstr ""
|
9894 |
|
9895 |
-
#: admin/system-info/system-info.php:
|
9896 |
msgid "cURL"
|
9897 |
msgstr ""
|
9898 |
|
9899 |
-
#: admin/system-info/system-info.php:
|
9900 |
msgid "cURL Extension is Loaded Version: "
|
9901 |
msgstr ""
|
9902 |
|
9903 |
-
#: admin/system-info/system-info.php:
|
9904 |
msgid "cURL OpenSSL Version (Used by PayPal, etc.)"
|
9905 |
msgstr ""
|
9906 |
|
9907 |
-
#: admin/system-info/system-info.php:
|
9908 |
msgid "cURL Extension is Not Loaded"
|
9909 |
msgstr ""
|
9910 |
|
9911 |
-
#: admin/system-info/system-info.php:
|
9912 |
msgid "OpenSSL Library"
|
9913 |
msgstr ""
|
9914 |
|
9915 |
-
#: admin/system-info/system-info.php:
|
9916 |
msgid "Zend Engine Version"
|
9917 |
msgstr ""
|
9918 |
|
9919 |
-
#: admin/system-info/system-info.php:
|
9920 |
msgid "Zend Guard|Optimizer"
|
9921 |
msgstr ""
|
9922 |
|
9923 |
-
#: admin/system-info/system-info.php:
|
9924 |
msgid "Zend Optimizer+ Extension is Loaded and Enabled"
|
9925 |
msgstr ""
|
9926 |
|
9927 |
-
#: admin/system-info/system-info.php:
|
9928 |
msgid "Zend Optimizer Extension is Loaded"
|
9929 |
msgstr ""
|
9930 |
|
9931 |
-
#: admin/system-info/system-info.php:
|
9932 |
msgid "Zend Guard Loader Extension is Loaded"
|
9933 |
msgstr ""
|
9934 |
|
9935 |
-
#: admin/system-info/system-info.php:
|
9936 |
msgid "A Zend Extension is Not Loaded"
|
9937 |
msgstr ""
|
9938 |
|
9939 |
-
#: admin/system-info/system-info.php:
|
9940 |
-
#: admin/system-info/system-info.php:
|
9941 |
msgid "OPcache"
|
9942 |
msgstr ""
|
9943 |
|
9944 |
-
#: admin/system-info/system-info.php:
|
9945 |
msgid ""
|
9946 |
"opcache_get_status and/or opcache_get_configuration functions are disabled."
|
9947 |
msgstr ""
|
9948 |
|
9949 |
-
#: admin/system-info/system-info.php:
|
9950 |
msgid "is Enabled"
|
9951 |
msgstr ""
|
9952 |
|
9953 |
-
#: admin/system-info/system-info.php:
|
9954 |
msgid "OPcache is Not Enabled"
|
9955 |
msgstr ""
|
9956 |
|
9957 |
-
#: admin/system-info/system-info.php:
|
9958 |
msgid "opcache.restrict_api directive is in use."
|
9959 |
msgstr ""
|
9960 |
|
9961 |
-
#: admin/system-info/system-info.php:
|
9962 |
msgid "ionCube Loader"
|
9963 |
msgstr ""
|
9964 |
|
9965 |
-
#: admin/system-info/system-info.php:
|
9966 |
msgid "ionCube Loader Extension is Loaded "
|
9967 |
msgstr ""
|
9968 |
|
9969 |
-
#: admin/system-info/system-info.php:
|
9970 |
-
#: admin/system-info/system-info.php:
|
9971 |
msgid "Version: "
|
9972 |
msgstr ""
|
9973 |
|
9974 |
-
#: admin/system-info/system-info.php:
|
9975 |
msgid "ionCube Loader Extension is Not Loaded"
|
9976 |
msgstr ""
|
9977 |
|
9978 |
-
#: admin/system-info/system-info.php:
|
9979 |
msgid "Suhosin"
|
9980 |
msgstr ""
|
9981 |
|
9982 |
-
#: admin/system-info/system-info.php:
|
9983 |
msgid "The Suhosin-Patch is installed"
|
9984 |
msgstr ""
|
9985 |
|
9986 |
-
#: admin/system-info/system-info.php:
|
9987 |
msgid "Suhosin-Extension is Loaded"
|
9988 |
msgstr ""
|
9989 |
|
9990 |
-
#: admin/system-info/system-info.php:
|
9991 |
msgid "Suhosin is Not Installed|Loaded"
|
9992 |
msgstr ""
|
9993 |
|
9994 |
-
#: admin/system-info/system-info.php:
|
9995 |
msgid "APC"
|
9996 |
msgstr ""
|
9997 |
|
9998 |
-
#: admin/system-info/system-info.php:
|
9999 |
msgid "APC Extension is Loaded and Enabled"
|
10000 |
msgstr ""
|
10001 |
|
10002 |
-
#: admin/system-info/system-info.php:
|
10003 |
msgid "APC Extension is Loaded but Not Enabled"
|
10004 |
msgstr ""
|
10005 |
|
10006 |
-
#: admin/system-info/system-info.php:
|
10007 |
msgid "APC Extension is Not Loaded"
|
10008 |
msgstr ""
|
10009 |
|
10010 |
-
#: admin/system-info/system-info.php:
|
10011 |
msgid "eAccelerator"
|
10012 |
msgstr ""
|
10013 |
|
10014 |
-
#: admin/system-info/system-info.php:
|
10015 |
msgid "eAccelerator Extension is Loaded and Enabled"
|
10016 |
msgstr ""
|
10017 |
|
10018 |
-
#: admin/system-info/system-info.php:
|
10019 |
msgid "eAccelerator Extension is Loaded but Not Enabled"
|
10020 |
msgstr ""
|
10021 |
|
10022 |
-
#: admin/system-info/system-info.php:
|
10023 |
msgid "eAccelerator Extension is Not Loaded"
|
10024 |
msgstr ""
|
10025 |
|
10026 |
-
#: admin/system-info/system-info.php:
|
10027 |
msgid "XCache"
|
10028 |
msgstr ""
|
10029 |
|
10030 |
-
#: admin/system-info/system-info.php:
|
10031 |
msgid "XCache Extension is Loaded and Enabled"
|
10032 |
msgstr ""
|
10033 |
|
10034 |
-
#: admin/system-info/system-info.php:
|
10035 |
msgid "XCache Extension is Loaded but Not Enabled"
|
10036 |
msgstr ""
|
10037 |
|
10038 |
-
#: admin/system-info/system-info.php:
|
10039 |
msgid "XCache Extension is Not Loaded"
|
10040 |
msgstr ""
|
10041 |
|
10042 |
-
#: admin/system-info/system-info.php:
|
10043 |
msgid "Varnish"
|
10044 |
msgstr ""
|
10045 |
|
10046 |
-
#: admin/system-info/system-info.php:
|
10047 |
msgid "Varnish Extension is Loaded"
|
10048 |
msgstr ""
|
10049 |
|
10050 |
-
#: admin/system-info/system-info.php:
|
10051 |
msgid "Varnish Extension is Not Loaded"
|
10052 |
msgstr ""
|
10053 |
|
10054 |
-
#: admin/system-info/system-info.php:
|
10055 |
msgid "Memcache"
|
10056 |
msgstr ""
|
10057 |
|
10058 |
-
#: admin/system-info/system-info.php:
|
10059 |
msgid "Memcache Extension is Loaded"
|
10060 |
msgstr ""
|
10061 |
|
10062 |
-
#: admin/system-info/system-info.php:
|
10063 |
msgid "Memcache Extension is Not Loaded"
|
10064 |
msgstr ""
|
10065 |
|
10066 |
-
#: admin/system-info/system-info.php:
|
10067 |
msgid "Memcached"
|
10068 |
msgstr ""
|
10069 |
|
10070 |
-
#: admin/system-info/system-info.php:
|
10071 |
msgid "Memcached Extension is Loaded"
|
10072 |
msgstr ""
|
10073 |
|
10074 |
-
#: admin/system-info/system-info.php:
|
10075 |
msgid "Memcached Extension is Not Loaded"
|
10076 |
msgstr ""
|
10077 |
|
10078 |
-
#: admin/system-info/system-info.php:
|
10079 |
msgid "DB Info is not displayed on Network/Multisite subsites"
|
10080 |
msgstr ""
|
10081 |
|
10082 |
-
#: admin/system-info/system-info.php:
|
10083 |
msgid "Not Set"
|
10084 |
msgstr ""
|
10085 |
|
10086 |
-
#: admin/system-info/system-info.php:
|
10087 |
msgid "DB Version: "
|
10088 |
msgstr ""
|
10089 |
|
10090 |
-
#: admin/system-info/system-info.php:
|
10091 |
msgid "DB Client Version: "
|
10092 |
msgstr ""
|
10093 |
|
10094 |
-
#: admin/system-info/system-info.php:
|
10095 |
msgid "DB Hostname (Local): "
|
10096 |
msgstr ""
|
10097 |
|
10098 |
-
#: admin/system-info/system-info.php:
|
10099 |
msgid "DB Hostname (Server): "
|
10100 |
msgstr ""
|
10101 |
|
10102 |
-
#: admin/system-info/system-info.php:
|
10103 |
msgid "DB Hostname IP (Server): "
|
10104 |
msgstr ""
|
10105 |
|
10106 |
-
#: admin/system-info/system-info.php:
|
10107 |
msgid "DB Storage Engine: "
|
10108 |
msgstr ""
|
10109 |
|
10110 |
-
#: admin/system-info/system-info.php:
|
10111 |
msgid "DB Connect Timeout: "
|
10112 |
msgstr ""
|
10113 |
|
10114 |
-
#: admin/system-info/system-info.php:
|
10115 |
msgid " seconds"
|
10116 |
msgstr ""
|
10117 |
|
10118 |
-
#: admin/system-info/system-info.php:
|
10119 |
msgid "DB max_allowed_packet: "
|
10120 |
msgstr ""
|
10121 |
|
10122 |
-
#: admin/system-info/system-info.php:
|
10123 |
msgid "DB Port: "
|
10124 |
msgstr ""
|
10125 |
|
10126 |
-
#: admin/system-info/system-info.php:
|
10127 |
msgid "DB Name: "
|
10128 |
msgstr ""
|
10129 |
|
10130 |
-
#: admin/system-info/system-info.php:
|
10131 |
msgid "DB Table Prefix: "
|
10132 |
msgstr ""
|
10133 |
|
10134 |
-
#: admin/system-info/system-info.php:
|
10135 |
msgid "DB Charset: "
|
10136 |
msgstr ""
|
10137 |
|
10138 |
-
#: admin/system-info/system-info.php:
|
10139 |
msgid "DB Collation: "
|
10140 |
msgstr ""
|
10141 |
|
10142 |
-
#: admin/system-info/system-info.php:
|
10143 |
msgid "SQL Mode: "
|
10144 |
msgstr ""
|
10145 |
|
10146 |
-
#: admin/system-info/system-info.php:
|
10147 |
msgid "MySQL Extension: "
|
10148 |
msgstr ""
|
10149 |
|
10150 |
-
#: admin/system-info/system-info.php:
|
10151 |
msgid "Installed|Enabled"
|
10152 |
msgstr ""
|
10153 |
|
10154 |
-
#: admin/system-info/system-info.php:
|
10155 |
msgid "Not Installed|Enabled"
|
10156 |
msgstr ""
|
10157 |
|
10158 |
-
#: admin/system-info/system-info.php:
|
10159 |
msgid "MySQLi Extension: "
|
10160 |
msgstr ""
|
10161 |
|
10162 |
-
#: admin/system-info/system-info.php:
|
10163 |
msgid "WordPress Installation Folder"
|
10164 |
msgstr ""
|
10165 |
|
10166 |
-
#: admin/system-info/system-info.php:
|
10167 |
msgid "WordPress Installation Type"
|
10168 |
msgstr ""
|
10169 |
|
10170 |
-
#: admin/system-info/system-info.php:
|
10171 |
msgid "Standard|GWIOD Site Type"
|
10172 |
msgstr ""
|
10173 |
|
10174 |
-
#: admin/system-info/system-info.php:
|
10175 |
msgid "Network|Multisite"
|
10176 |
msgstr ""
|
10177 |
|
10178 |
-
#: admin/system-info/system-info.php:
|
10179 |
msgid "BuddyPress"
|
10180 |
msgstr ""
|
10181 |
|
10182 |
-
#: admin/system-info/system-info.php:
|
10183 |
msgid "bbPress"
|
10184 |
msgstr ""
|
10185 |
|
10186 |
-
#: admin/system-info/system-info.php:
|
10187 |
msgid "Plugins Folder"
|
10188 |
msgstr ""
|
10189 |
|
10190 |
-
#: admin/system-info/system-info.php:
|
10191 |
msgid "Uploads Folder"
|
10192 |
msgstr ""
|
10193 |
|
10194 |
-
#: admin/system-info/system-info.php:
|
10195 |
msgid "UPLOADS Constant"
|
10196 |
msgstr ""
|
10197 |
|
10198 |
-
#: admin/system-info/system-info.php:
|
10199 |
msgid "WP Permalink Structure"
|
10200 |
msgstr ""
|
10201 |
|
10202 |
-
#: admin/system-info/system-info.php:
|
10203 |
msgid "DISABLE_WP_CRON constant"
|
10204 |
msgstr ""
|
10205 |
|
10206 |
-
#: admin/system-info/system-info.php:
|
10207 |
msgid "Standard WP Crons are disabled on your website."
|
10208 |
msgstr ""
|
10209 |
|
10210 |
-
#: admin/system-info/system-info.php:
|
10211 |
msgid "Standard WP Crons are not disabled on your website."
|
10212 |
msgstr ""
|
10213 |
|
10214 |
-
#: admin/system-info/system-info.php:
|
10215 |
msgid "Total Plugins Installed"
|
10216 |
msgstr ""
|
10217 |
|
10218 |
-
#: admin/system-info/system-info.php:
|
10219 |
msgid "Total Must-Use Plugins Installed"
|
10220 |
msgstr ""
|
10221 |
|
10222 |
-
#: admin/system-info/system-info.php:
|
10223 |
msgid "Total Plugins Activated"
|
10224 |
msgstr ""
|
10225 |
|
10226 |
-
#: admin/system-info/system-info.php:
|
10227 |
msgid "Total Plugins Network Activated"
|
10228 |
msgstr ""
|
10229 |
|
10230 |
-
#: admin/system-info/system-info.php:
|
10231 |
msgid "Get Plugins|Themes List"
|
10232 |
msgstr ""
|
10233 |
|
10234 |
-
#: admin/system-info/system-info.php:
|
10235 |
msgid "This window is draggable (top) and resizable (bottom right corner)"
|
10236 |
msgstr ""
|
10237 |
|
10238 |
-
#: admin/system-info/system-info.php:
|
10239 |
msgid "Browser Compression Supported"
|
10240 |
msgstr ""
|
10241 |
|
10242 |
-
#: admin/system-info/system-info.php:
|
10243 |
msgid "GD Library"
|
10244 |
msgstr ""
|
10245 |
|
10246 |
-
#: admin/system-info/system-info.php:
|
10247 |
msgid "GD Extension is Loaded - "
|
10248 |
msgstr ""
|
10249 |
|
10250 |
-
#: admin/system-info/system-info.php:
|
10251 |
msgid "GD Extension is Not Loaded"
|
10252 |
msgstr ""
|
10253 |
|
10254 |
-
#: admin/system-info/system-info.php:
|
10255 |
msgid "ImageMagick"
|
10256 |
msgstr ""
|
10257 |
|
10258 |
-
#: admin/system-info/system-info.php:
|
10259 |
msgid "ImageMagick Extension is Loaded - "
|
10260 |
msgstr ""
|
10261 |
|
10262 |
-
#: admin/system-info/system-info.php:
|
10263 |
msgid "ImageMagick Extension is Not Loaded"
|
10264 |
msgstr ""
|
10265 |
|
10266 |
-
#: admin/system-info/system-info.php:
|
10267 |
msgid "PHP Server|PHP.ini Info"
|
10268 |
msgstr ""
|
10269 |
|
10270 |
-
#: admin/system-info/system-info.php:
|
10271 |
msgid ""
|
10272 |
"File|Folder Permissions (CGI or DSO)|Script Owner User ID (UID)|File Owner "
|
10273 |
"User ID"
|
10274 |
msgstr ""
|
10275 |
|
10276 |
-
#: admin/system-info/system-info.php:
|
10277 |
msgid "PHP Version"
|
10278 |
msgstr ""
|
10279 |
|
10280 |
-
#: admin/system-info/system-info.php:
|
10281 |
msgid "PHP Memory Usage"
|
10282 |
msgstr ""
|
10283 |
|
10284 |
-
#: admin/system-info/system-info.php:
|
10285 |
msgid " MB"
|
10286 |
msgstr ""
|
10287 |
|
10288 |
-
#: admin/system-info/system-info.php:
|
10289 |
msgid "WordPress Admin Memory Limit"
|
10290 |
msgstr ""
|
10291 |
|
10292 |
-
#: admin/system-info/system-info.php:
|
10293 |
msgid "WordPress Base Memory Limit"
|
10294 |
msgstr ""
|
10295 |
|
10296 |
-
#: admin/system-info/system-info.php:
|
10297 |
-
#: admin/system-info/system-info.php:
|
10298 |
msgid "PHP Actual Configuration Memory Limit: "
|
10299 |
msgstr ""
|
10300 |
|
10301 |
-
#: admin/system-info/system-info.php:
|
10302 |
msgid "The Memory Limit value is not available from your Server."
|
10303 |
msgstr ""
|
10304 |
|
10305 |
-
#: admin/system-info/system-info.php:
|
10306 |
msgid ""
|
10307 |
" Recommendation: Increase Memory Limit to at least 128M, 256M is even better."
|
10308 |
msgstr ""
|
10309 |
|
10310 |
-
#: admin/system-info/system-info.php:
|
10311 |
msgid "PHP Configuration File (php.ini)"
|
10312 |
msgstr ""
|
10313 |
|
10314 |
-
#: admin/system-info/system-info.php:
|
10315 |
msgid "None/Not in use"
|
10316 |
msgstr ""
|
10317 |
|
10318 |
-
#: admin/system-info/system-info.php:
|
10319 |
msgid "WP Temp Dir: "
|
10320 |
msgstr ""
|
10321 |
|
10322 |
-
#: admin/system-info/system-info.php:
|
10323 |
msgid "The WP_TEMP_DIR constant is being used in wp-config.php file"
|
10324 |
msgstr ""
|
10325 |
|
10326 |
-
#: admin/system-info/system-info.php:
|
10327 |
msgid "PHP Temp Dir: "
|
10328 |
msgstr ""
|
10329 |
|
10330 |
-
#: admin/system-info/system-info.php:
|
10331 |
-
#: admin/system-info/system-info.php:
|
10332 |
msgid "Not set/defined or directory is not writable"
|
10333 |
msgstr ""
|
10334 |
|
10335 |
-
#: admin/system-info/system-info.php:
|
10336 |
msgid "PHP Upload Temp Dir: "
|
10337 |
msgstr ""
|
10338 |
|
10339 |
-
#: admin/system-info/system-info.php:
|
10340 |
msgid "Session Save Path: "
|
10341 |
msgstr ""
|
10342 |
|
10343 |
-
#: admin/system-info/system-info.php:
|
10344 |
msgid "Cycles: "
|
10345 |
msgstr ""
|
10346 |
|
10347 |
-
#: admin/system-info/system-info.php:
|
10348 |
msgid "Garbage Collector: "
|
10349 |
msgstr ""
|
10350 |
|
10351 |
-
#: admin/system-info/system-info.php:
|
10352 |
msgid "PHP Max Upload Size"
|
10353 |
msgstr ""
|
10354 |
|
10355 |
-
#: admin/system-info/system-info.php:
|
10356 |
msgid "PHP Max Post Size"
|
10357 |
msgstr ""
|
10358 |
|
10359 |
-
#: admin/system-info/system-info.php:
|
10360 |
msgid "PHP Safe Mode"
|
10361 |
msgstr ""
|
10362 |
|
10363 |
-
#: admin/system-info/system-info.php:
|
10364 |
msgid "PHP Allow URL fopen"
|
10365 |
msgstr ""
|
10366 |
|
10367 |
-
#: admin/system-info/system-info.php:
|
10368 |
msgid "PHP Allow URL Include"
|
10369 |
msgstr ""
|
10370 |
|
10371 |
-
#: admin/system-info/system-info.php:
|
10372 |
msgid "PHP Display Errors"
|
10373 |
msgstr ""
|
10374 |
|
10375 |
-
#: admin/system-info/system-info.php:
|
10376 |
msgid "PHP Display Startup Errors"
|
10377 |
msgstr ""
|
10378 |
|
10379 |
-
#: admin/system-info/system-info.php:
|
10380 |
msgid "PHP Expose PHP"
|
10381 |
msgstr ""
|
10382 |
|
10383 |
-
#: admin/system-info/system-info.php:
|
10384 |
msgid "PHP Register Globals"
|
10385 |
msgstr ""
|
10386 |
|
10387 |
-
#: admin/system-info/system-info.php:
|
10388 |
msgid "PHP MySQL Allow Persistent Connections"
|
10389 |
msgstr ""
|
10390 |
|
10391 |
-
#: admin/system-info/system-info.php:
|
10392 |
msgid "PHP Output Buffering"
|
10393 |
msgstr ""
|
10394 |
|
10395 |
-
#: admin/system-info/system-info.php:
|
10396 |
msgid "PHP Max Script Execution Time"
|
10397 |
msgstr ""
|
10398 |
|
10399 |
-
#: admin/system-info/system-info.php:
|
10400 |
msgid "PHP Magic Quotes GPC"
|
10401 |
msgstr ""
|
10402 |
|
10403 |
-
#: admin/system-info/system-info.php:
|
10404 |
msgid "PHP open_basedir"
|
10405 |
msgstr ""
|
10406 |
|
10407 |
-
#: admin/system-info/system-info.php:
|
10408 |
msgid "Off/Not in use"
|
10409 |
msgstr ""
|
10410 |
|
10411 |
-
#: admin/system-info/system-info.php:
|
10412 |
msgid "PHP XML Support"
|
10413 |
msgstr ""
|
10414 |
|
10415 |
-
#: admin/system-info/system-info.php:
|
10416 |
-
#: admin/system-info/system-info.php:
|
10417 |
msgid "Yes"
|
10418 |
msgstr ""
|
10419 |
|
10420 |
-
#: admin/system-info/system-info.php:
|
10421 |
-
#: admin/system-info/system-info.php:
|
10422 |
msgid "No"
|
10423 |
msgstr ""
|
10424 |
|
10425 |
-
#: admin/system-info/system-info.php:
|
10426 |
msgid "PHP IPTC Support"
|
10427 |
msgstr ""
|
10428 |
|
10429 |
-
#: admin/system-info/system-info.php:
|
10430 |
msgid "PHP Exif Support"
|
10431 |
msgstr ""
|
10432 |
|
10433 |
-
#: admin/system-info/system-info.php:
|
10434 |
msgid "PHP Disable Functions"
|
10435 |
msgstr ""
|
10436 |
|
10437 |
-
#: admin/system-info/system-info.php:
|
10438 |
msgid "No PHP functions are disabled."
|
10439 |
msgstr ""
|
10440 |
|
10441 |
-
#: admin/system-info/system-info.php:
|
10442 |
msgid "PHP Suhosin Function Blacklist"
|
10443 |
msgstr ""
|
10444 |
|
10445 |
-
#: admin/system-info/system-info.php:
|
10446 |
msgid "No PHP functions are blacklisted."
|
10447 |
msgstr ""
|
10448 |
|
10449 |
-
#: admin/system-info/system-info.php:
|
10450 |
msgid "CGI File and Folder Permissions|Recommendations"
|
10451 |
msgstr ""
|
10452 |
|
10453 |
-
#: admin/system-info/system-info.php:
|
10454 |
-
#: admin/system-info/system-info.php:
|
10455 |
msgid "Folder Path"
|
10456 |
msgstr ""
|
10457 |
|
10458 |
-
#: admin/system-info/system-info.php:
|
10459 |
-
#: admin/system-info/system-info.php:
|
10460 |
msgid "Recommended"
|
10461 |
msgstr ""
|
10462 |
|
10463 |
-
#: admin/system-info/system-info.php:
|
10464 |
-
#: admin/system-info/system-info.php:
|
10465 |
-
#: admin/system-info/system-info.php:
|
10466 |
-
#: admin/system-info/system-info.php:
|
10467 |
msgid "Permissions"
|
10468 |
msgstr ""
|
10469 |
|
10470 |
-
#: admin/system-info/system-info.php:
|
10471 |
-
#: admin/system-info/system-info.php:
|
10472 |
msgid "Current"
|
10473 |
msgstr ""
|
10474 |
|
10475 |
-
#: admin/system-info/system-info.php:
|
10476 |
-
#: admin/system-info/system-info.php:
|
10477 |
msgid "Script Owner"
|
10478 |
msgstr ""
|
10479 |
|
10480 |
-
#: admin/system-info/system-info.php:
|
10481 |
-
#: admin/system-info/system-info.php:
|
10482 |
msgid " User ID (UID)"
|
10483 |
msgstr ""
|
10484 |
|
10485 |
-
#: admin/system-info/system-info.php:
|
10486 |
-
#: admin/system-info/system-info.php:
|
10487 |
msgid "File Owner"
|
10488 |
msgstr ""
|
10489 |
|
10490 |
-
#: admin/system-info/system-info.php:
|
10491 |
-
#: admin/system-info/system-info.php:
|
10492 |
msgid " User ID"
|
10493 |
msgstr ""
|
10494 |
|
10495 |
-
#: admin/system-info/system-info.php:
|
10496 |
msgid "DSO File and Folder Permissions|Recommendations"
|
10497 |
msgstr ""
|
10498 |
|
10499 |
-
#: admin/system-info/system-info.php:
|
10500 |
msgid "System Info Processing Completion Time: "
|
10501 |
msgstr ""
|
10502 |
|
10503 |
-
#: admin/system-info/system-info.php:
|
10504 |
msgid ""
|
10505 |
"Check your website Headers or another website's Headers by making a GET "
|
10506 |
"Request"
|
10507 |
msgstr ""
|
10508 |
|
10509 |
-
#: admin/system-info/system-info.php:
|
10510 |
msgid "GET Request Headers: "
|
10511 |
msgstr ""
|
10512 |
|
10513 |
-
#: admin/system-info/system-info.php:
|
10514 |
msgid ""
|
10515 |
"Error: The WordPress wp_remote_get function is not available or is blocked "
|
10516 |
"on your website/server. Or you did not enter a valid URL."
|
10517 |
msgstr ""
|
10518 |
|
10519 |
-
#: admin/system-info/system-info.php:
|
10520 |
msgid "Enter a Website URL - Example: "
|
10521 |
msgstr ""
|
10522 |
|
10523 |
-
#: admin/system-info/system-info.php:
|
10524 |
msgid ""
|
10525 |
"This Headers check makes a GET Request using the WordPress wp_remote_get "
|
10526 |
"function."
|
10527 |
msgstr ""
|
10528 |
|
10529 |
-
#: admin/system-info/system-info.php:
|
10530 |
msgid ""
|
10531 |
"You can use the Check Headers HEAD Request tool to check headers using HEAD "
|
10532 |
"instead of GET."
|
10533 |
msgstr ""
|
10534 |
|
10535 |
-
#: admin/theme-skin/theme-skin.php:
|
10536 |
msgid "Inpage Status Display"
|
10537 |
msgstr ""
|
10538 |
|
10539 |
-
#: admin/theme-skin/theme-skin.php:
|
10540 |
msgid ""
|
10541 |
"The Inpage Status Display displays the status of BPS features, options and "
|
10542 |
"your site security in real-time. The Inpage Status Display automatically "
|
@@ -10547,11 +10536,11 @@ msgid ""
|
|
10547 |
"Display."
|
10548 |
msgstr ""
|
10549 |
|
10550 |
-
#: admin/theme-skin/theme-skin.php:
|
10551 |
msgid "Turn On|Off The Processing Spinner:"
|
10552 |
msgstr ""
|
10553 |
|
10554 |
-
#: admin/theme-skin/theme-skin.php:
|
10555 |
msgid ""
|
10556 |
"The Processing Spinner is displayed during processing of the Forms listed "
|
10557 |
"below. The Processing Spinner includes a Cancel button to cancel the Form "
|
@@ -10562,21 +10551,21 @@ msgid ""
|
|
10562 |
"is being displayed."
|
10563 |
msgstr ""
|
10564 |
|
10565 |
-
#: admin/theme-skin/theme-skin.php:
|
10566 |
msgid "Forms That Display The Processing Spinner:"
|
10567 |
msgstr ""
|
10568 |
|
10569 |
-
#: admin/theme-skin/theme-skin.php:
|
10570 |
msgid ""
|
10571 |
"DB Backup Job Processing, DB Table Names & Character Length Table, DB Table "
|
10572 |
"Prefix Changer and Setup Wizard."
|
10573 |
msgstr ""
|
10574 |
|
10575 |
-
#: admin/theme-skin/theme-skin.php:
|
10576 |
msgid "Turn On|Off jQuery ScrollTop Animation:"
|
10577 |
msgstr ""
|
10578 |
|
10579 |
-
#: admin/theme-skin/theme-skin.php:
|
10580 |
msgid ""
|
10581 |
"The jQuery ScrollTop Animation is the scrolling animation that you see after "
|
10582 |
"submitting BPS Forms, which automatically scrolls to the top of BPS plugin "
|
@@ -10587,11 +10576,11 @@ msgid ""
|
|
10587 |
"Animation can be turned On or Off."
|
10588 |
msgstr ""
|
10589 |
|
10590 |
-
#: admin/theme-skin/theme-skin.php:
|
10591 |
msgid "WP Toolbar Functionality In BPS Plugin Pages:"
|
10592 |
msgstr ""
|
10593 |
|
10594 |
-
#: admin/theme-skin/theme-skin.php:
|
10595 |
msgid ""
|
10596 |
"This option affects the WP Toolbar in BPS plugin pages ONLY and does not "
|
10597 |
"affect the WP Toolbar anywhere else on your site. WP Toolbar additional menu "
|
@@ -10606,22 +10595,22 @@ msgid ""
|
|
10606 |
"to the default setting: Load Only The Default WP Toolbar."
|
10607 |
msgstr ""
|
10608 |
|
10609 |
-
#: admin/theme-skin/theme-skin.php:
|
10610 |
msgid "Script|Style Loader Filter (SLF) In BPS Plugin Pages:"
|
10611 |
msgstr ""
|
10612 |
|
10613 |
-
#: admin/theme-skin/theme-skin.php:
|
10614 |
msgid ""
|
10615 |
"SLF is set to On by default. This option prevents other plugin and theme "
|
10616 |
"scripts from loading in BPS plugin pages, which can break BPS js and CSS "
|
10617 |
"scripts and cause BPS plugin pages to display visually broken."
|
10618 |
msgstr ""
|
10619 |
|
10620 |
-
#: admin/theme-skin/theme-skin.php:
|
10621 |
msgid "BPS UI|UX|AutoFix Debug:"
|
10622 |
msgstr ""
|
10623 |
|
10624 |
-
#: admin/theme-skin/theme-skin.php:
|
10625 |
msgid ""
|
10626 |
"BPS UI|UX|AutoFix Debug is set to Off by default. Turning On the BPS UI|UX|"
|
10627 |
"AutoFix Debug option will display: plugin or theme Scripts that were "
|
@@ -10640,117 +10629,92 @@ msgid ""
|
|
10640 |
"the AutoFix whitelist rules will be created in."
|
10641 |
msgstr ""
|
10642 |
|
10643 |
-
#: admin/theme-skin/theme-skin.php:
|
10644 |
msgid "Turn On|Off The Inpage Status Display:"
|
10645 |
msgstr ""
|
10646 |
|
10647 |
-
#: admin/theme-skin/theme-skin.php:
|
10648 |
msgid "Inpage Status Display On"
|
10649 |
msgstr ""
|
10650 |
|
10651 |
-
#: admin/theme-skin/theme-skin.php:
|
10652 |
msgid "Inpage Status Display Off"
|
10653 |
msgstr ""
|
10654 |
|
10655 |
-
#: admin/theme-skin/theme-skin.php:
|
10656 |
msgid "Processing Spinner On"
|
10657 |
msgstr ""
|
10658 |
|
10659 |
-
#: admin/theme-skin/theme-skin.php:
|
10660 |
msgid "Processing Spinner Off"
|
10661 |
msgstr ""
|
10662 |
|
10663 |
-
#: admin/theme-skin/theme-skin.php:
|
10664 |
msgid "jQuery ScrollTop Animation On"
|
10665 |
msgstr ""
|
10666 |
|
10667 |
-
#: admin/theme-skin/theme-skin.php:
|
10668 |
msgid "jQuery ScrollTop Animation Off"
|
10669 |
msgstr ""
|
10670 |
|
10671 |
-
#: admin/theme-skin/theme-skin.php:
|
10672 |
-
#: admin/theme-skin/theme-skin.php:
|
10673 |
msgid "Click the Question Mark help button for information"
|
10674 |
msgstr ""
|
10675 |
|
10676 |
-
#: admin/theme-skin/theme-skin.php:
|
10677 |
msgid "Load Only The Default WP Toolbar"
|
10678 |
msgstr ""
|
10679 |
|
10680 |
-
#: admin/theme-skin/theme-skin.php:
|
10681 |
msgid "Load WP Toolbar With All Menu Items"
|
10682 |
msgstr ""
|
10683 |
|
10684 |
-
#: admin/theme-skin/theme-skin.php:
|
10685 |
msgid "SLF Option settings saved"
|
10686 |
msgstr ""
|
10687 |
|
10688 |
-
#: admin/theme-skin/theme-skin.php:
|
10689 |
msgid "SLF On"
|
10690 |
msgstr ""
|
10691 |
|
10692 |
-
#: admin/theme-skin/theme-skin.php:
|
10693 |
msgid "SLF Off"
|
10694 |
msgstr ""
|
10695 |
|
10696 |
-
#: admin/theme-skin/theme-skin.php:
|
10697 |
msgid "Debug Off"
|
10698 |
msgstr ""
|
10699 |
|
10700 |
-
#: admin/theme-skin/theme-skin.php:
|
10701 |
msgid "Debug On"
|
10702 |
msgstr ""
|
10703 |
|
10704 |
-
#: admin/wizard/pwizard-autofix-setup.php:
|
10705 |
msgid "WP Super Cache (WPSC) Plugin AutoSetup not required: "
|
10706 |
msgstr ""
|
10707 |
|
10708 |
-
#: admin/wizard/pwizard-autofix-setup.php:
|
10709 |
msgid ""
|
10710 |
"GWIOD site types do not require AutoSetup because WPSC creates htaccess code "
|
10711 |
"in the site root htaccess file."
|
10712 |
msgstr ""
|
10713 |
|
10714 |
-
#: admin/wizard/pwizard-autofix-setup.php:
|
10715 |
-
msgid ""
|
10716 |
-
"Error: The Pre-Installation Wizard is unable to add the WP Super Cache "
|
10717 |
-
"WP_CACHE code in your wp-config.php file."
|
10718 |
-
msgstr ""
|
10719 |
-
|
10720 |
-
#: admin/wizard/pwizard-autofix-setup.php:88
|
10721 |
-
msgid ""
|
10722 |
-
"A wp-config.php file was NOT found in your WordPress website root folder. If "
|
10723 |
-
"you have moved your wp-config.php file to another folder location then you "
|
10724 |
-
"will need to either move the wp-config.php file back to its default "
|
10725 |
-
"WordPress folder location and run the Pre-Installation Wizard again or "
|
10726 |
-
"manually edit your wp-config.php file and add the WP Super Cache WP_CACHE "
|
10727 |
-
"code. Click this link for the steps to manually edit your wp-config.php "
|
10728 |
-
"file: "
|
10729 |
-
msgstr ""
|
10730 |
-
|
10731 |
-
#: admin/wizard/pwizard-autofix-setup.php:88
|
10732 |
-
#: admin/wizard/pwizard-autofix-setup.php:382
|
10733 |
-
#: admin/wizard/pwizard-autofix-setup.php:735
|
10734 |
-
#: admin/wizard/pwizard-autofix-setup.php:1620
|
10735 |
-
#: admin/wizard/pwizard-autofix-setup.php:1912
|
10736 |
-
msgid "Manually Edit the WordPress wp-config.php file"
|
10737 |
-
msgstr ""
|
10738 |
-
|
10739 |
-
#: admin/wizard/pwizard-autofix-setup.php:174
|
10740 |
msgid "WP Super Cache (WPSC) Plugin AutoSetup Successful: "
|
10741 |
msgstr ""
|
10742 |
|
10743 |
-
#: admin/wizard/pwizard-autofix-setup.php:
|
10744 |
msgid ""
|
10745 |
"Important Note: If you change any of your WP Super Cache settings at any "
|
10746 |
"time, re-run the Setup Wizards again."
|
10747 |
msgstr ""
|
10748 |
|
10749 |
-
#: admin/wizard/pwizard-autofix-setup.php:
|
10750 |
msgid "WP Super Cache (WPSC) Plugin AutoCleanup Successful: "
|
10751 |
msgstr ""
|
10752 |
|
10753 |
-
#: admin/wizard/pwizard-autofix-setup.php:
|
10754 |
msgid ""
|
10755 |
"AutoCleanup has removed all WPSC htaccess code from BPS Custom Code and your "
|
10756 |
"Root htaccess file if it existed. If you have WPSC installed and are still "
|
@@ -10758,23 +10722,23 @@ msgid ""
|
|
10758 |
"activated the WPSC plugin again and resaved your WPSC plugin settings again."
|
10759 |
msgstr ""
|
10760 |
|
10761 |
-
#: admin/wizard/pwizard-autofix-setup.php:
|
10762 |
msgid "W3 Total Cache (W3TC) Plugin AutoSetup not required: "
|
10763 |
msgstr ""
|
10764 |
|
10765 |
-
#: admin/wizard/pwizard-autofix-setup.php:
|
10766 |
msgid ""
|
10767 |
"GWIOD site types do not require AutoSetup because W3TC creates htaccess code "
|
10768 |
"in the site root htaccess file."
|
10769 |
msgstr ""
|
10770 |
|
10771 |
-
#: admin/wizard/pwizard-autofix-setup.php:
|
10772 |
msgid ""
|
10773 |
"Error: The Pre-Installation Wizard is unable to add the W3 Total Cache "
|
10774 |
"WP_CACHE code in your wp-config.php file."
|
10775 |
msgstr ""
|
10776 |
|
10777 |
-
#: admin/wizard/pwizard-autofix-setup.php:
|
10778 |
msgid ""
|
10779 |
"A wp-config.php file was NOT found in your WordPress website root folder. If "
|
10780 |
"you have moved your wp-config.php file to another folder location then you "
|
@@ -10785,21 +10749,28 @@ msgid ""
|
|
10785 |
"file: "
|
10786 |
msgstr ""
|
10787 |
|
10788 |
-
#: admin/wizard/pwizard-autofix-setup.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10789 |
msgid "W3 Total Cache (W3TC) Plugin AutoSetup Successful: "
|
10790 |
msgstr ""
|
10791 |
|
10792 |
-
#: admin/wizard/pwizard-autofix-setup.php:
|
10793 |
msgid ""
|
10794 |
"Important Note: If you change any of your W3 Total Cache settings at any "
|
10795 |
"time, re-run the Setup Wizards again."
|
10796 |
msgstr ""
|
10797 |
|
10798 |
-
#: admin/wizard/pwizard-autofix-setup.php:
|
10799 |
msgid "W3 Total Cache (W3TC) Plugin AutoCleanup Successful: "
|
10800 |
msgstr ""
|
10801 |
|
10802 |
-
#: admin/wizard/pwizard-autofix-setup.php:
|
10803 |
msgid ""
|
10804 |
"AutoCleanup has removed all W3TC htaccess code from BPS Custom Code and your "
|
10805 |
"Root htaccess file if it existed. If you have W3TC installed and are still "
|
@@ -10807,23 +10778,23 @@ msgid ""
|
|
10807 |
"activated the W3TC plugin again and resaved your W3TC plugin settings again."
|
10808 |
msgstr ""
|
10809 |
|
10810 |
-
#: admin/wizard/pwizard-autofix-setup.php:
|
10811 |
msgid "Comet Cache Plugin AutoSetup not required: "
|
10812 |
msgstr ""
|
10813 |
|
10814 |
-
#: admin/wizard/pwizard-autofix-setup.php:
|
10815 |
msgid ""
|
10816 |
"GWIOD site types do not require AutoSetup because Comet Cache creates "
|
10817 |
"htaccess code in the site root htaccess file."
|
10818 |
msgstr ""
|
10819 |
|
10820 |
-
#: admin/wizard/pwizard-autofix-setup.php:
|
10821 |
msgid ""
|
10822 |
"Error: The Pre-Installation Wizard is unable to add the Comet Cache WP_CACHE "
|
10823 |
"code in your wp-config.php file."
|
10824 |
msgstr ""
|
10825 |
|
10826 |
-
#: admin/wizard/pwizard-autofix-setup.php:
|
10827 |
msgid ""
|
10828 |
"A wp-config.php file was NOT found in your WordPress website root folder. If "
|
10829 |
"you have moved your wp-config.php file to another folder location then you "
|
@@ -10833,21 +10804,21 @@ msgid ""
|
|
10833 |
"Click this link for the steps to manually edit your wp-config.php file: "
|
10834 |
msgstr ""
|
10835 |
|
10836 |
-
#: admin/wizard/pwizard-autofix-setup.php:
|
10837 |
msgid "Comet Cache Plugin AutoSetup Successful: "
|
10838 |
msgstr ""
|
10839 |
|
10840 |
-
#: admin/wizard/pwizard-autofix-setup.php:
|
10841 |
msgid ""
|
10842 |
"Important Note: If you change any of your Comet Cache settings at any time, "
|
10843 |
"re-run the Setup Wizards again."
|
10844 |
msgstr ""
|
10845 |
|
10846 |
-
#: admin/wizard/pwizard-autofix-setup.php:
|
10847 |
msgid "Comet Cache Plugin AutoCleanup Successful: "
|
10848 |
msgstr ""
|
10849 |
|
10850 |
-
#: admin/wizard/pwizard-autofix-setup.php:
|
10851 |
msgid ""
|
10852 |
"AutoCleanup has removed all Comet Cache htaccess code from BPS Custom Code "
|
10853 |
"and your Root htaccess file if it existed. If you have Comet Cache installed "
|
@@ -10856,21 +10827,21 @@ msgid ""
|
|
10856 |
"Cache plugin settings again."
|
10857 |
msgstr ""
|
10858 |
|
10859 |
-
#: admin/wizard/pwizard-autofix-setup.php:
|
10860 |
msgid "Endurance Page Cache (EPC) Plugin AutoSetup not required: "
|
10861 |
msgstr ""
|
10862 |
|
10863 |
-
#: admin/wizard/pwizard-autofix-setup.php:
|
10864 |
msgid ""
|
10865 |
"GWIOD site types do not require AutoSetup because EPC creates htaccess code "
|
10866 |
"in the site root htaccess file."
|
10867 |
msgstr ""
|
10868 |
|
10869 |
-
#: admin/wizard/pwizard-autofix-setup.php:
|
10870 |
msgid "Error: Endurance Page Cache (EPC) Plugin AutoSetup Unsuccessful - "
|
10871 |
msgstr ""
|
10872 |
|
10873 |
-
#: admin/wizard/pwizard-autofix-setup.php:
|
10874 |
msgid ""
|
10875 |
"The Setup Wizard did not find any Endurance Page Cache htaccess code in your "
|
10876 |
"Root htaccess file. Do these steps to fix the problem: Go to the BPS "
|
@@ -10880,21 +10851,21 @@ msgid ""
|
|
10880 |
"Pre-Installation Wizard and Setup Wizard again."
|
10881 |
msgstr ""
|
10882 |
|
10883 |
-
#: admin/wizard/pwizard-autofix-setup.php:
|
10884 |
msgid "Endurance Page Cache (EPC) Plugin AutoSetup Successful: "
|
10885 |
msgstr ""
|
10886 |
|
10887 |
-
#: admin/wizard/pwizard-autofix-setup.php:
|
10888 |
msgid ""
|
10889 |
"Important Note: If you disable or enable the Endurance Page Cache plugin at "
|
10890 |
"any time, re-run the Setup Wizards again."
|
10891 |
msgstr ""
|
10892 |
|
10893 |
-
#: admin/wizard/pwizard-autofix-setup.php:
|
10894 |
msgid "Endurance Page Cache (EPC) Plugin AutoCleanup Successful: "
|
10895 |
msgstr ""
|
10896 |
|
10897 |
-
#: admin/wizard/pwizard-autofix-setup.php:
|
10898 |
msgid ""
|
10899 |
"AutoCleanup has removed all Endurance Page Cache htaccess code from BPS "
|
10900 |
"Custom Code and your Root htaccess file if it existed. If you have disabled "
|
@@ -10903,21 +10874,21 @@ msgid ""
|
|
10903 |
"Endurance Page Cache plugin again."
|
10904 |
msgstr ""
|
10905 |
|
10906 |
-
#: admin/wizard/pwizard-autofix-setup.php:
|
10907 |
msgid "WP Fastest Cache (WPFC) Plugin AutoSetup not required: "
|
10908 |
msgstr ""
|
10909 |
|
10910 |
-
#: admin/wizard/pwizard-autofix-setup.php:
|
10911 |
msgid ""
|
10912 |
"GWIOD site types do not require AutoSetup because WPFC creates htaccess code "
|
10913 |
"in the site root htaccess file."
|
10914 |
msgstr ""
|
10915 |
|
10916 |
-
#: admin/wizard/pwizard-autofix-setup.php:
|
10917 |
msgid "Error: WP Fastest Cache (WPFC) Plugin AutoSetup Unsuccessful: "
|
10918 |
msgstr ""
|
10919 |
|
10920 |
-
#: admin/wizard/pwizard-autofix-setup.php:
|
10921 |
msgid ""
|
10922 |
"The Setup Wizard did not find any WPFC htaccess code in your Root htaccess "
|
10923 |
"file. Do these steps to fix the problem: Go to the BPS htaccess File Editor "
|
@@ -10926,21 +10897,21 @@ msgid ""
|
|
10926 |
"Pre-Installation Wizard and Setup Wizard again."
|
10927 |
msgstr ""
|
10928 |
|
10929 |
-
#: admin/wizard/pwizard-autofix-setup.php:
|
10930 |
msgid "WP Fastest Cache (WPFC) Plugin AutoSetup Successful: "
|
10931 |
msgstr ""
|
10932 |
|
10933 |
-
#: admin/wizard/pwizard-autofix-setup.php:
|
10934 |
msgid ""
|
10935 |
"Important Note: If you change any of your WP Fastest Cache settings at any "
|
10936 |
"time, re-run the Setup Wizards again."
|
10937 |
msgstr ""
|
10938 |
|
10939 |
-
#: admin/wizard/pwizard-autofix-setup.php:
|
10940 |
msgid "WP Fastest Cache (WPFC) Plugin AutoCleanup Successful: "
|
10941 |
msgstr ""
|
10942 |
|
10943 |
-
#: admin/wizard/pwizard-autofix-setup.php:
|
10944 |
msgid ""
|
10945 |
"AutoCleanup has removed all WPFC htaccess code from BPS Custom Code and your "
|
10946 |
"Root htaccess file if it existed. If you have WPFC installed and are still "
|
@@ -10948,23 +10919,23 @@ msgid ""
|
|
10948 |
"activated the WPFC plugin again and resaved your WPFC plugin settings again."
|
10949 |
msgstr ""
|
10950 |
|
10951 |
-
#: admin/wizard/pwizard-autofix-setup.php:
|
10952 |
msgid "WP Rocket Plugin AutoSetup not required: "
|
10953 |
msgstr ""
|
10954 |
|
10955 |
-
#: admin/wizard/pwizard-autofix-setup.php:
|
10956 |
msgid ""
|
10957 |
"GWIOD site types do not require AutoSetup because WP Rocket creates htaccess "
|
10958 |
"code in the site root htaccess file."
|
10959 |
msgstr ""
|
10960 |
|
10961 |
-
#: admin/wizard/pwizard-autofix-setup.php:
|
10962 |
msgid ""
|
10963 |
"Error: The Pre-Installation Wizard is unable to add the WP Rocket WP_CACHE "
|
10964 |
"code in your wp-config.php file."
|
10965 |
msgstr ""
|
10966 |
|
10967 |
-
#: admin/wizard/pwizard-autofix-setup.php:
|
10968 |
msgid ""
|
10969 |
"A wp-config.php file was NOT found in your WordPress website root folder. If "
|
10970 |
"you have moved your wp-config.php file to another folder location then you "
|
@@ -10974,21 +10945,21 @@ msgid ""
|
|
10974 |
"Click this link for the steps to manually edit your wp-config.php file: "
|
10975 |
msgstr ""
|
10976 |
|
10977 |
-
#: admin/wizard/pwizard-autofix-setup.php:
|
10978 |
msgid "WP Rocket Plugin AutoSetup Successful: "
|
10979 |
msgstr ""
|
10980 |
|
10981 |
-
#: admin/wizard/pwizard-autofix-setup.php:
|
10982 |
msgid ""
|
10983 |
"Important Note: If you change any of your WP Rocket settings at any time, re-"
|
10984 |
"run the Setup Wizards again."
|
10985 |
msgstr ""
|
10986 |
|
10987 |
-
#: admin/wizard/pwizard-autofix-setup.php:
|
10988 |
msgid "WP Rocket Plugin AutoCleanup Successful: "
|
10989 |
msgstr ""
|
10990 |
|
10991 |
-
#: admin/wizard/pwizard-autofix-setup.php:
|
10992 |
msgid ""
|
10993 |
"AutoCleanup has removed all WP Rocket htaccess code from BPS Custom Code and "
|
10994 |
"your Root htaccess file if it existed. If you have WP Rocket installed and "
|
@@ -10997,23 +10968,23 @@ msgid ""
|
|
10997 |
"plugin settings again."
|
10998 |
msgstr ""
|
10999 |
|
11000 |
-
#: admin/wizard/pwizard-autofix-setup.php:
|
11001 |
msgid "LiteSpeed Cache Plugin AutoSetup not required: "
|
11002 |
msgstr ""
|
11003 |
|
11004 |
-
#: admin/wizard/pwizard-autofix-setup.php:
|
11005 |
msgid ""
|
11006 |
"GWIOD site types do not require AutoSetup because LiteSpeed Cache creates "
|
11007 |
"htaccess code in the site root htaccess file."
|
11008 |
msgstr ""
|
11009 |
|
11010 |
-
#: admin/wizard/pwizard-autofix-setup.php:
|
11011 |
msgid ""
|
11012 |
"Error: The Pre-Installation Wizard is unable to add the LiteSpeed Cache "
|
11013 |
"WP_CACHE code in your wp-config.php file."
|
11014 |
msgstr ""
|
11015 |
|
11016 |
-
#: admin/wizard/pwizard-autofix-setup.php:
|
11017 |
msgid ""
|
11018 |
"A wp-config.php file was NOT found in your WordPress website root folder. If "
|
11019 |
"you have moved your wp-config.php file to another folder location then you "
|
@@ -11024,21 +10995,21 @@ msgid ""
|
|
11024 |
"file: "
|
11025 |
msgstr ""
|
11026 |
|
11027 |
-
#: admin/wizard/pwizard-autofix-setup.php:
|
11028 |
msgid "LiteSpeed Cache Plugin AutoSetup Successful: "
|
11029 |
msgstr ""
|
11030 |
|
11031 |
-
#: admin/wizard/pwizard-autofix-setup.php:
|
11032 |
msgid ""
|
11033 |
"Important Note: If you change any of your LiteSpeed Cache settings at any "
|
11034 |
"time, re-run the Setup Wizards again."
|
11035 |
msgstr ""
|
11036 |
|
11037 |
-
#: admin/wizard/pwizard-autofix-setup.php:
|
11038 |
msgid "LiteSpeed Cache Plugin AutoCleanup Successful: "
|
11039 |
msgstr ""
|
11040 |
|
11041 |
-
#: admin/wizard/pwizard-autofix-setup.php:
|
11042 |
msgid ""
|
11043 |
"AutoCleanup has removed all LiteSpeed Cache htaccess code from BPS Custom "
|
11044 |
"Code and your Root htaccess file if it existed. If you have LiteSpeed Cache "
|
@@ -11603,10 +11574,10 @@ msgid ""
|
|
11603 |
msgstr ""
|
11604 |
|
11605 |
#: admin/wizard/wizard-functions.php:647 admin/wizard/wizard-functions.php:656
|
11606 |
-
#: admin/wizard/wizard-functions.php:879 admin/wizard/wizard.php:
|
11607 |
-
#: admin/wizard/wizard.php:
|
11608 |
-
#: admin/wizard/wizard.php:
|
11609 |
-
#: admin/wizard/wizard.php:
|
11610 |
msgid " DB Option created or updated Successfully!"
|
11611 |
msgstr ""
|
11612 |
|
@@ -11654,7 +11625,7 @@ msgstr ""
|
|
11654 |
msgid "Error: The default.htaccess Master htaccess file cannot be created."
|
11655 |
msgstr ""
|
11656 |
|
11657 |
-
#: admin/wizard/wizard-functions.php:880 admin/wizard/wizard.php:
|
11658 |
msgid " Folder created Successfully!"
|
11659 |
msgstr ""
|
11660 |
|
@@ -11867,82 +11838,82 @@ msgid ""
|
|
11867 |
"Video Tutorials to watch."
|
11868 |
msgstr ""
|
11869 |
|
11870 |
-
#: admin/wizard/wizard.php:367 admin/wizard/wizard.php:
|
11871 |
msgid "AutoFix (AutoWhitelist|AutoSetup|AutoCleanup)"
|
11872 |
msgstr ""
|
11873 |
|
11874 |
-
#: admin/wizard/wizard.php:
|
11875 |
msgid "BulletProof Security Database Tables Setup"
|
11876 |
msgstr ""
|
11877 |
|
11878 |
-
#: admin/wizard/wizard.php:
|
11879 |
msgid "BulletProof Security Core Folders Setup"
|
11880 |
msgstr ""
|
11881 |
|
11882 |
-
#: admin/wizard/wizard.php:
|
11883 |
msgid "Error: Unable to create Folder "
|
11884 |
msgstr ""
|
11885 |
|
11886 |
-
#: admin/wizard/wizard.php:
|
11887 |
msgid "BulletProof Security Core Files Setup"
|
11888 |
msgstr ""
|
11889 |
|
11890 |
-
#: admin/wizard/wizard.php:
|
11891 |
msgid " File created or updated Successfully!"
|
11892 |
msgstr ""
|
11893 |
|
11894 |
-
#: admin/wizard/wizard.php:
|
11895 |
msgid "Error: Unable to create or update File "
|
11896 |
msgstr ""
|
11897 |
|
11898 |
-
#: admin/wizard/wizard.php:
|
11899 |
msgid "BulletProof Security MScan Malware Scanner Setup"
|
11900 |
msgstr ""
|
11901 |
|
11902 |
-
#: admin/wizard/wizard.php:
|
11903 |
msgid "BulletProof Security DB Backup Setup"
|
11904 |
msgstr ""
|
11905 |
|
11906 |
-
#: admin/wizard/wizard.php:
|
11907 |
msgid "BulletProof Security Hidden Plugin Folders|Files (HPF) Setup"
|
11908 |
msgstr ""
|
11909 |
|
11910 |
-
#: admin/wizard/wizard.php:
|
11911 |
msgid ""
|
11912 |
"Hidden Plugin Folders|Files (HPF) DB Options created or updated Successfully!"
|
11913 |
msgstr ""
|
11914 |
|
11915 |
-
#: admin/wizard/wizard.php:
|
11916 |
msgid "BulletProof Security Security Log User Agent Filter Setup"
|
11917 |
msgstr ""
|
11918 |
|
11919 |
-
#: admin/wizard/wizard.php:
|
11920 |
msgid "BulletProof Security Email Alerting & Log File Options Setup"
|
11921 |
msgstr ""
|
11922 |
|
11923 |
-
#: admin/wizard/wizard.php:
|
11924 |
msgid "BulletProof Security Login Security & Monitoring Options Setup"
|
11925 |
msgstr ""
|
11926 |
|
11927 |
-
#: admin/wizard/wizard.php:
|
11928 |
msgid "BulletProof Security JTC-Lite Options Setup"
|
11929 |
msgstr ""
|
11930 |
|
11931 |
-
#: admin/wizard/wizard.php:
|
11932 |
msgid "BulletProof Security Force Strong Passwords Options Setup"
|
11933 |
msgstr ""
|
11934 |
|
11935 |
-
#: admin/wizard/wizard.php:
|
11936 |
msgid "The Setup Wizard has completed BPS Setup."
|
11937 |
msgstr ""
|
11938 |
|
11939 |
-
#: admin/wizard/wizard.php:
|
11940 |
msgid ""
|
11941 |
"Check the \"BPS Setup Verification & Error Checks\" section below for any "
|
11942 |
"errors in Red Font."
|
11943 |
msgstr ""
|
11944 |
|
11945 |
-
#: admin/wizard/wizard.php:
|
11946 |
msgid ""
|
11947 |
"Your existing root htaccess file has been backed up here: /wp-content/bps-"
|
11948 |
"backup/master-backups/root.htaccess-[Date-Timestamp]. If you run into a "
|
@@ -11950,61 +11921,61 @@ msgid ""
|
|
11950 |
"forum topic: "
|
11951 |
msgstr ""
|
11952 |
|
11953 |
-
#: admin/wizard/wizard.php:
|
11954 |
msgid "Setup Wizard Root htaccess File Backup"
|
11955 |
msgstr ""
|
11956 |
|
11957 |
-
#: admin/wizard/wizard.php:
|
11958 |
msgid "Setup Wizard Completion Time: "
|
11959 |
msgstr ""
|
11960 |
|
11961 |
-
#: admin/wizard/wizard.php:
|
11962 |
-
#: admin/wizard/wizard.php:
|
11963 |
msgid "Setup Wizard Export|Import"
|
11964 |
msgstr ""
|
11965 |
|
11966 |
-
#: admin/wizard/wizard.php:
|
11967 |
msgid "htaccess Files Disabled Notice: "
|
11968 |
msgstr ""
|
11969 |
|
11970 |
-
#: admin/wizard/wizard.php:
|
11971 |
msgid ""
|
11972 |
"BPS has detected that htaccess files cannot be used on your website/server. "
|
11973 |
"Click this "
|
11974 |
msgstr ""
|
11975 |
|
11976 |
-
#: admin/wizard/wizard.php:
|
11977 |
msgid " link for more information before running the Wizards."
|
11978 |
msgstr ""
|
11979 |
|
11980 |
-
#: admin/wizard/wizard.php:
|
11981 |
msgid ""
|
11982 |
"If you intentionally disabled htaccess files then disregard this Notice. The "
|
11983 |
"Setup Wizard needs to be run again after disabling or enabling htaccess "
|
11984 |
"files."
|
11985 |
msgstr ""
|
11986 |
|
11987 |
-
#: admin/wizard/wizard.php:
|
11988 |
msgid "Recommended Video Tutorials: "
|
11989 |
msgstr ""
|
11990 |
|
11991 |
-
#: admin/wizard/wizard.php:
|
11992 |
msgid "Setup Wizard Video Tutorial"
|
11993 |
msgstr ""
|
11994 |
|
11995 |
-
#: admin/wizard/wizard.php:
|
11996 |
msgid "Security Log Video Tutorial"
|
11997 |
msgstr ""
|
11998 |
|
11999 |
-
#: admin/wizard/wizard.php:
|
12000 |
msgid "Setup Wizard Steps: "
|
12001 |
msgstr ""
|
12002 |
|
12003 |
-
#: admin/wizard/wizard.php:
|
12004 |
msgid "1. Click the Setup Wizard button."
|
12005 |
msgstr ""
|
12006 |
|
12007 |
-
#: admin/wizard/wizard.php:
|
12008 |
msgid ""
|
12009 |
"Setup Wizard Pre-Installation Checks are automatically performed and "
|
12010 |
"displayed on the Setup Wizard page. Green font messages mean everything is "
|
@@ -12015,53 +11986,53 @@ msgid ""
|
|
12015 |
"to be fixed before running the Setup Wizard."
|
12016 |
msgstr ""
|
12017 |
|
12018 |
-
#: admin/wizard/wizard.php:
|
12019 |
msgid ""
|
12020 |
"You can re-run the Setup Wizard again at any time. Your existing settings "
|
12021 |
"will NOT be overwritten and will be re-saved. Any new or additional settings "
|
12022 |
"that the Setup Wizard finds on your website will be saved/setup."
|
12023 |
msgstr ""
|
12024 |
|
12025 |
-
#: admin/wizard/wizard.php:
|
12026 |
msgid ""
|
12027 |
"When the Setup Wizard has completed you will see \"The Setup Wizard has "
|
12028 |
"completed BPS Setup.\""
|
12029 |
msgstr ""
|
12030 |
|
12031 |
-
#: admin/wizard/wizard.php:
|
12032 |
msgid ""
|
12033 |
"Your existing Root and wp-admin htaccess files are backed up before new Root "
|
12034 |
"and wp-admin htaccess files are created by the Setup Wizard. The BPS backup "
|
12035 |
"folder is here: "
|
12036 |
msgstr ""
|
12037 |
|
12038 |
-
#: admin/wizard/wizard.php:
|
12039 |
msgid ""
|
12040 |
" and the backed up htaccess file names are: root.htaccess and wpadmin."
|
12041 |
"htaccess."
|
12042 |
msgstr ""
|
12043 |
|
12044 |
-
#: admin/wizard/wizard.php:
|
12045 |
msgid "Forum Help Links:"
|
12046 |
msgstr ""
|
12047 |
|
12048 |
-
#: admin/wizard/wizard.php:
|
12049 |
msgid "Go Daddy Managed WordPress Hosting (GDMW)"
|
12050 |
msgstr ""
|
12051 |
|
12052 |
-
#: admin/wizard/wizard.php:
|
12053 |
msgid "Enable|Disable htaccess Files"
|
12054 |
msgstr ""
|
12055 |
|
12056 |
-
#: admin/wizard/wizard.php:
|
12057 |
msgid "AutoFix Forum Topic"
|
12058 |
msgstr ""
|
12059 |
|
12060 |
-
#: admin/wizard/wizard.php:
|
12061 |
msgid "GDPR Compliance Forum Topic"
|
12062 |
msgstr ""
|
12063 |
|
12064 |
-
#: admin/wizard/wizard.php:
|
12065 |
msgid ""
|
12066 |
"Setup Wizard AutoFix is turned On by default. When AutoFix is turned On the "
|
12067 |
"Setup Wizard will automatically create htaccess whitelist rules in BPS "
|
@@ -12083,11 +12054,11 @@ msgid ""
|
|
12083 |
"problem is."
|
12084 |
msgstr ""
|
12085 |
|
12086 |
-
#: admin/wizard/wizard.php:
|
12087 |
msgid "GDPR Compliance (IP Address Logging On|Off)"
|
12088 |
msgstr ""
|
12089 |
|
12090 |
-
#: admin/wizard/wizard.php:
|
12091 |
msgid ""
|
12092 |
"The GDPR Compliance option setting is set to Off by default. Choosing the "
|
12093 |
"GDPR Compliance On option setting will disable IP address logging in all BPS "
|
@@ -12101,11 +12072,11 @@ msgid ""
|
|
12101 |
"at the top of this Question Mark help window."
|
12102 |
msgstr ""
|
12103 |
|
12104 |
-
#: admin/wizard/wizard.php:
|
12105 |
msgid "Go Daddy Managed WordPress Hosting (GDMW):"
|
12106 |
msgstr ""
|
12107 |
|
12108 |
-
#: admin/wizard/wizard.php:
|
12109 |
msgid ""
|
12110 |
"This option is ONLY for a special type of Go Daddy Hosting account called "
|
12111 |
"\"Managed WordPress Hosting\" and is NOT for regular/standard Go Daddy "
|
@@ -12114,15 +12085,15 @@ msgid ""
|
|
12114 |
"section above for more information."
|
12115 |
msgstr ""
|
12116 |
|
12117 |
-
#: admin/wizard/wizard.php:
|
12118 |
msgid "Enable|Disable htaccess Files:"
|
12119 |
msgstr ""
|
12120 |
|
12121 |
-
#: admin/wizard/wizard.php:
|
12122 |
msgid "Before changing this option setting, click the "
|
12123 |
msgstr ""
|
12124 |
|
12125 |
-
#: admin/wizard/wizard.php:
|
12126 |
msgid ""
|
12127 |
" Forum Help Link at the top of this Question Mark help window to find out "
|
12128 |
"exactly what this option setting does and when it should or should not be "
|
@@ -12131,22 +12102,22 @@ msgid ""
|
|
12131 |
"files."
|
12132 |
msgstr ""
|
12133 |
|
12134 |
-
#: admin/wizard/wizard.php:
|
12135 |
msgid "Enable|Disable wp-admin BulletProof Mode"
|
12136 |
msgstr ""
|
12137 |
|
12138 |
-
#: admin/wizard/wizard.php:
|
12139 |
msgid ""
|
12140 |
"The default setting is already set to: wp-admin BulletProof Mode Enabled. If "
|
12141 |
"you would like to disable wp-admin BulletProof Mode select wp-admin "
|
12142 |
"BulletProof Mode Disabled."
|
12143 |
msgstr ""
|
12144 |
|
12145 |
-
#: admin/wizard/wizard.php:
|
12146 |
msgid "Zip File Download Fix (Incapsula, Proxy, Other Cause):"
|
12147 |
msgstr ""
|
12148 |
|
12149 |
-
#: admin/wizard/wizard.php:
|
12150 |
msgid ""
|
12151 |
"This option should only be set to On if you are seeing a 403 error and/or "
|
12152 |
"unable to download these Zip files: Custom Code Export Zip file, Login "
|
@@ -12162,11 +12133,11 @@ msgid ""
|
|
12162 |
"again."
|
12163 |
msgstr ""
|
12164 |
|
12165 |
-
#: admin/wizard/wizard.php:
|
12166 |
msgid "Multisite Hide|Display System Info Page for Subsites:"
|
12167 |
msgstr ""
|
12168 |
|
12169 |
-
#: admin/wizard/wizard.php:
|
12170 |
msgid ""
|
12171 |
"This option is for Network|Multisite sites only. Choosing Hide System Info "
|
12172 |
"Page will hide the System Info menu link under the BPS navigational menus. "
|
@@ -12174,11 +12145,11 @@ msgid ""
|
|
12174 |
"under the BPS navigational mensus."
|
12175 |
msgstr ""
|
12176 |
|
12177 |
-
#: admin/wizard/wizard.php:
|
12178 |
msgid "Network|Multisite Sitewide Login Security Settings"
|
12179 |
msgstr ""
|
12180 |
|
12181 |
-
#: admin/wizard/wizard.php:
|
12182 |
msgid ""
|
12183 |
"This option is for Network|Multisite sites only. This is an independent "
|
12184 |
"option Form that creates and saves Login Security DB option settings for all "
|
@@ -12195,11 +12166,11 @@ msgid ""
|
|
12195 |
"Reset, Sort DB Rows: Ascending - Show Oldest Login First."
|
12196 |
msgstr ""
|
12197 |
|
12198 |
-
#: admin/wizard/wizard.php:
|
12199 |
msgid "Network|Multisite Sitewide JTC-Lite Settings"
|
12200 |
msgstr ""
|
12201 |
|
12202 |
-
#: admin/wizard/wizard.php:
|
12203 |
msgid ""
|
12204 |
"This option is for Network|Multisite sites only. This is an independent "
|
12205 |
"option Form that creates and saves JTC-Lite DB option settings for all "
|
@@ -12214,11 +12185,11 @@ msgid ""
|
|
12214 |
"box on the Login Form."
|
12215 |
msgstr ""
|
12216 |
|
12217 |
-
#: admin/wizard/wizard.php:
|
12218 |
msgid "Network|Multisite Sitewide Force Strong Passwords Settings"
|
12219 |
msgstr ""
|
12220 |
|
12221 |
-
#: admin/wizard/wizard.php:
|
12222 |
msgid ""
|
12223 |
"This option is for Network|Multisite sites ONLY. This is an independent "
|
12224 |
"option Form that creates and saves FSP DB option settings for all Network "
|
@@ -12231,11 +12202,11 @@ msgid ""
|
|
12231 |
"all checked and Displayed Message/Error Message: default FSP message."
|
12232 |
msgstr ""
|
12233 |
|
12234 |
-
#: admin/wizard/wizard.php:
|
12235 |
msgid "Network|Multisite Sitewide GDMW Settings"
|
12236 |
msgstr ""
|
12237 |
|
12238 |
-
#: admin/wizard/wizard.php:
|
12239 |
msgid ""
|
12240 |
"This option is for Network|Multisite sites ONLY. This is an independent "
|
12241 |
"option Form that creates and saves the GDMW option setting for all Network "
|
@@ -12249,85 +12220,85 @@ msgid ""
|
|
12249 |
"all Subsites."
|
12250 |
msgstr ""
|
12251 |
|
12252 |
-
#: admin/wizard/wizard.php:
|
12253 |
msgid "AutoFix (AutoWhitelist|AutoSetup|AutoCleanup):"
|
12254 |
msgstr ""
|
12255 |
|
12256 |
-
#: admin/wizard/wizard.php:
|
12257 |
msgid "AutoFix On"
|
12258 |
msgstr ""
|
12259 |
|
12260 |
-
#: admin/wizard/wizard.php:
|
12261 |
msgid "AutoFix Off"
|
12262 |
msgstr ""
|
12263 |
|
12264 |
-
#: admin/wizard/wizard.php:
|
12265 |
msgid "GDPR Compliance (IP Address Logging On|Off):"
|
12266 |
msgstr ""
|
12267 |
|
12268 |
-
#: admin/wizard/wizard.php:
|
12269 |
msgid "GDPR Compliance Off"
|
12270 |
msgstr ""
|
12271 |
|
12272 |
-
#: admin/wizard/wizard.php:
|
12273 |
msgid "GDPR Compliance On"
|
12274 |
msgstr ""
|
12275 |
|
12276 |
-
#: admin/wizard/wizard.php:
|
12277 |
msgid "No (default setting)"
|
12278 |
msgstr ""
|
12279 |
|
12280 |
-
#: admin/wizard/wizard.php:
|
12281 |
msgid "Yes (ONLY if you have Managed WordPress Hosting)"
|
12282 |
msgstr ""
|
12283 |
|
12284 |
-
#: admin/wizard/wizard.php:
|
12285 |
msgid ""
|
12286 |
"CAUTION: Click the Question Mark help button before changing this option "
|
12287 |
"setting"
|
12288 |
msgstr ""
|
12289 |
|
12290 |
-
#: admin/wizard/wizard.php:
|
12291 |
msgid "htaccess Files Enabled"
|
12292 |
msgstr ""
|
12293 |
|
12294 |
-
#: admin/wizard/wizard.php:
|
12295 |
msgid "htaccess Files Disabled"
|
12296 |
msgstr ""
|
12297 |
|
12298 |
-
#: admin/wizard/wizard.php:
|
12299 |
msgid "Enable|Disable wp-admin BulletProof Mode:"
|
12300 |
msgstr ""
|
12301 |
|
12302 |
-
#: admin/wizard/wizard.php:
|
12303 |
msgid "wp-admin BulletProof Mode Enabled"
|
12304 |
msgstr ""
|
12305 |
|
12306 |
-
#: admin/wizard/wizard.php:
|
12307 |
msgid "wp-admin BulletProof Mode Disabled"
|
12308 |
msgstr ""
|
12309 |
|
12310 |
-
#: admin/wizard/wizard.php:
|
12311 |
msgid "Zip File Download Fix Off"
|
12312 |
msgstr ""
|
12313 |
|
12314 |
-
#: admin/wizard/wizard.php:
|
12315 |
msgid "Zip File Download Fix On"
|
12316 |
msgstr ""
|
12317 |
|
12318 |
-
#: admin/wizard/wizard.php:
|
12319 |
msgid "Hide System Info Page"
|
12320 |
msgstr ""
|
12321 |
|
12322 |
-
#: admin/wizard/wizard.php:
|
12323 |
msgid "Display System Info Page"
|
12324 |
msgstr ""
|
12325 |
|
12326 |
-
#: admin/wizard/wizard.php:
|
12327 |
msgid "Network|Multisite Sitewide JTC Anti-Spam|Anti-Hacker Settings"
|
12328 |
msgstr ""
|
12329 |
|
12330 |
-
#: admin/wizard/wizard.php:
|
12331 |
msgid ""
|
12332 |
"The Zip File Download Fix option is set to On. This option should only be "
|
12333 |
"set to On if you are unable to download these Zip files: Custom Code Export "
|
@@ -12335,15 +12306,15 @@ msgid ""
|
|
12335 |
"htaccess file backup Zip file."
|
12336 |
msgstr ""
|
12337 |
|
12338 |
-
#: admin/wizard/wizard.php:
|
12339 |
msgid "The Zip File Download Fix option is set to Off."
|
12340 |
msgstr ""
|
12341 |
|
12342 |
-
#: admin/wizard/wizard.php:
|
12343 |
msgid "Multisite Hide|Display System Info Page for Subsites option saved."
|
12344 |
msgstr ""
|
12345 |
|
12346 |
-
#: admin/wizard/wizard.php:
|
12347 |
msgid ""
|
12348 |
"Error: Your Network site exceeds the default WP criteria for a large network "
|
12349 |
"site. Either you have more than 10,000 users or more than 10,000 sites. "
|
@@ -12351,12 +12322,12 @@ msgid ""
|
|
12351 |
"org for assistance."
|
12352 |
msgstr ""
|
12353 |
|
12354 |
-
#: admin/wizard/wizard.php:
|
12355 |
msgid " LSM DB Options created or updated Successfully!"
|
12356 |
msgstr ""
|
12357 |
|
12358 |
-
#: admin/wizard/wizard.php:
|
12359 |
-
#: admin/wizard/wizard.php:
|
12360 |
msgid ""
|
12361 |
"Error: Your Network site exceeds the default WP criteria for a large network "
|
12362 |
"site. Either you have more than 10,000 users or more than 10,000 sites. "
|
@@ -12364,27 +12335,27 @@ msgid ""
|
|
12364 |
"line: Setup Wizard Options Large Network Site Help."
|
12365 |
msgstr ""
|
12366 |
|
12367 |
-
#: admin/wizard/wizard.php:
|
12368 |
msgid " JTC DB Options created or updated Successfully!"
|
12369 |
msgstr ""
|
12370 |
|
12371 |
-
#: admin/wizard/wizard.php:
|
12372 |
msgid " FSP DB Options created or updated Successfully!"
|
12373 |
msgstr ""
|
12374 |
|
12375 |
-
#: admin/wizard/wizard.php:
|
12376 |
msgid " GDMW DB Options created or updated Successfully!"
|
12377 |
msgstr ""
|
12378 |
|
12379 |
-
#: admin/wizard/wizard.php:
|
12380 |
msgid "GDMW Hosting"
|
12381 |
msgstr ""
|
12382 |
|
12383 |
-
#: admin/wizard/wizard.php:
|
12384 |
msgid "Setup Wizard Export"
|
12385 |
msgstr ""
|
12386 |
|
12387 |
-
#: admin/wizard/wizard.php:
|
12388 |
msgid ""
|
12389 |
"The Setup Wizard Export feature exports all BPS plugin option settings "
|
12390 |
"except for website specific settings that need to be setup by running the "
|
@@ -12392,11 +12363,11 @@ msgid ""
|
|
12392 |
"new website. The name of the exported zip file is: bps-settings-export.zip"
|
12393 |
msgstr ""
|
12394 |
|
12395 |
-
#: admin/wizard/wizard.php:
|
12396 |
msgid "Setup Wizard Import"
|
12397 |
msgstr ""
|
12398 |
|
12399 |
-
#: admin/wizard/wizard.php:
|
12400 |
msgid ""
|
12401 |
"To import BPS plugin option settings click the Choose File button, navigate "
|
12402 |
"to where you downloaded/saved the bps-settings-export.zip file on your "
|
@@ -12410,11 +12381,11 @@ msgid ""
|
|
12410 |
"code or remove it from BPS Custom Code."
|
12411 |
msgstr ""
|
12412 |
|
12413 |
-
#: admin/wizard/wizard.php:
|
12414 |
msgid "Network|Multisite Help Info"
|
12415 |
msgstr ""
|
12416 |
|
12417 |
-
#: admin/wizard/wizard.php:
|
12418 |
msgid ""
|
12419 |
"Setup Wizard Export|Import works for Network|Multisite site types, but only "
|
12420 |
"the Primary site's BPS plugin option settings are exported and imported. BPS "
|
@@ -12426,17 +12397,17 @@ msgid ""
|
|
12426 |
"option settings from the Primary site to all Subsites."
|
12427 |
msgstr ""
|
12428 |
|
12429 |
-
#: admin/wizard/wizard.php:
|
12430 |
msgid ""
|
12431 |
"Clicking OK will Import BPS plugin settings from the bps-settings-export.zip "
|
12432 |
"file on your computer."
|
12433 |
msgstr ""
|
12434 |
|
12435 |
-
#: admin/wizard/wizard.php:
|
12436 |
msgid "Click OK to Import BPS plugin settings or click Cancel."
|
12437 |
msgstr ""
|
12438 |
|
12439 |
-
#: admin/wizard/wizard.php:
|
12440 |
msgid ""
|
12441 |
"Clicking OK will Export your BPS plugin settings into the bps-settings-"
|
12442 |
"export.zip file, which you can then download to your computer by clicking "
|
@@ -12444,33 +12415,33 @@ msgid ""
|
|
12444 |
"message."
|
12445 |
msgstr ""
|
12446 |
|
12447 |
-
#: admin/wizard/wizard.php:
|
12448 |
msgid "Click OK to Export BPS plugin settings or click Cancel."
|
12449 |
msgstr ""
|
12450 |
|
12451 |
-
#: admin/wizard/wizard.php:
|
12452 |
msgid ""
|
12453 |
"BPS plugin option settings exported successfully. Click the Download Zip "
|
12454 |
"Export button to download the Setup Wizard Export zip file: bps-settings-"
|
12455 |
"export.zip."
|
12456 |
msgstr ""
|
12457 |
|
12458 |
-
#: admin/wizard/wizard.php:
|
12459 |
msgid ""
|
12460 |
" and select the Zip File Download Fix On setting for the Zile File Download "
|
12461 |
"Fix option. You should now be able to download the bps-settings-export.zip "
|
12462 |
"file."
|
12463 |
msgstr ""
|
12464 |
|
12465 |
-
#: admin/wizard/wizard.php:
|
12466 |
msgid "BPS plugin settings imported successfully."
|
12467 |
msgstr ""
|
12468 |
|
12469 |
-
#: admin/wizard/wizard.php:
|
12470 |
msgid "IMPORTANT: Run the BPS Setup Wizard now."
|
12471 |
msgstr ""
|
12472 |
|
12473 |
-
#: admin/wizard/wizard.php:
|
12474 |
msgid ""
|
12475 |
"After running the Setup Wizard go to the BPS Security > htaccess File "
|
12476 |
"Options > Custom Code tab page and check all of your custom htaccess code "
|
@@ -12480,13 +12451,13 @@ msgid ""
|
|
12480 |
"code or remove it from BPS Custom Code."
|
12481 |
msgstr ""
|
12482 |
|
12483 |
-
#: admin/wizard/wizard.php:
|
12484 |
msgid ""
|
12485 |
"Either the bps-settings-export.zip file has not been selected yet for Import "
|
12486 |
"or the file "
|
12487 |
msgstr ""
|
12488 |
|
12489 |
-
#: admin/wizard/wizard.php:
|
12490 |
msgid ""
|
12491 |
" is not a valid Setup Wizard Export file or file name. The BPS Setup Wizard "
|
12492 |
"Import feature only allows the bps-settings-export.zip file to be Uploaded/"
|
@@ -12550,7 +12521,7 @@ msgid ""
|
|
12550 |
msgstr ""
|
12551 |
|
12552 |
#: includes/functions.php:361 includes/functions.php:577
|
12553 |
-
#: includes/functions.php:649 includes/hud-autofix-setup.php:
|
12554 |
#: includes/hud-dismiss-functions.php:509
|
12555 |
msgid "Go to the "
|
12556 |
msgstr ""
|
@@ -12596,7 +12567,7 @@ msgid ""
|
|
12596 |
"button before running the Setup Wizard again."
|
12597 |
msgstr ""
|
12598 |
|
12599 |
-
#: includes/functions.php:399 includes/hud-autofix-setup.php:
|
12600 |
#: includes/hud-dismiss-functions.php:77 includes/hud-dismiss-functions.php:111
|
12601 |
#: includes/hud-dismiss-functions.php:145
|
12602 |
#: includes/hud-dismiss-functions.php:358
|
@@ -12609,15 +12580,15 @@ msgstr ""
|
|
12609 |
#: includes/hud-dismiss-functions.php:712
|
12610 |
#: includes/hud-dismiss-functions.php:764
|
12611 |
#: includes/hud-dismiss-functions.php:811
|
12612 |
-
#: includes/hud-dismiss-functions.php:
|
12613 |
-
#: includes/hud-dismiss-functions.php:
|
12614 |
msgid ""
|
12615 |
"To Dismiss this Notice click the Dismiss Notice button below. To Reset "
|
12616 |
"Dismiss Notices click the Reset|Recheck Dismiss Notices button on the Alerts|"
|
12617 |
"Logs|Email Options page."
|
12618 |
msgstr ""
|
12619 |
|
12620 |
-
#: includes/functions.php:399 includes/hud-autofix-setup.php:
|
12621 |
#: includes/hud-dismiss-functions.php:77 includes/hud-dismiss-functions.php:111
|
12622 |
#: includes/hud-dismiss-functions.php:145
|
12623 |
#: includes/hud-dismiss-functions.php:210
|
@@ -12640,8 +12611,8 @@ msgstr ""
|
|
12640 |
#: includes/hud-dismiss-functions.php:712
|
12641 |
#: includes/hud-dismiss-functions.php:764
|
12642 |
#: includes/hud-dismiss-functions.php:811
|
12643 |
-
#: includes/hud-dismiss-functions.php:
|
12644 |
-
#: includes/hud-dismiss-functions.php:
|
12645 |
msgid "Dismiss Notice"
|
12646 |
msgstr ""
|
12647 |
|
@@ -13256,405 +13227,405 @@ msgstr ""
|
|
13256 |
msgid "Plugin Folder Path: "
|
13257 |
msgstr ""
|
13258 |
|
13259 |
-
#: includes/hud-autofix-setup.php:
|
13260 |
msgid "BPS Notice: The Endurance Page Cache (EPC) must-use plugin is installed"
|
13261 |
msgstr ""
|
13262 |
|
13263 |
-
#: includes/hud-autofix-setup.php:
|
13264 |
msgid ""
|
13265 |
"The EPC must-use plugin has been automatically installed by your Web Host "
|
13266 |
"and requires these additional BPS setup steps to make sure everything is "
|
13267 |
"setup correctly:"
|
13268 |
msgstr ""
|
13269 |
|
13270 |
-
#: includes/hud-autofix-setup.php:
|
13271 |
-
#: includes/hud-autofix-setup.php:
|
13272 |
-
#: includes/hud-autofix-setup.php:
|
13273 |
-
#: includes/hud-autofix-setup.php:
|
13274 |
-
#: includes/hud-autofix-setup.php:
|
13275 |
-
#: includes/hud-autofix-setup.php:
|
13276 |
msgid "BPS htaccess File Editor page"
|
13277 |
msgstr ""
|
13278 |
|
13279 |
-
#: includes/hud-autofix-setup.php:
|
13280 |
msgid ""
|
13281 |
" click the Unlock htaccess File button, go to the WordPress Settings > "
|
13282 |
"General page, scroll down to Endurance Cache settings,"
|
13283 |
msgstr ""
|
13284 |
|
13285 |
-
#: includes/hud-autofix-setup.php:
|
13286 |
msgid "click the Save Changes button, click this link: "
|
13287 |
msgstr ""
|
13288 |
|
13289 |
-
#: includes/hud-autofix-setup.php:
|
13290 |
-
#: includes/hud-autofix-setup.php:
|
13291 |
-
#: includes/hud-autofix-setup.php:
|
13292 |
-
#: includes/hud-autofix-setup.php:
|
13293 |
-
#: includes/hud-autofix-setup.php:
|
13294 |
-
#: includes/hud-autofix-setup.php:
|
13295 |
-
#: includes/hud-autofix-setup.php:
|
13296 |
-
#: includes/hud-autofix-setup.php:
|
13297 |
-
#: includes/hud-autofix-setup.php:
|
13298 |
-
#: includes/hud-autofix-setup.php:
|
13299 |
msgid "BPS Setup Wizard"
|
13300 |
msgstr ""
|
13301 |
|
13302 |
-
#: includes/hud-autofix-setup.php:
|
13303 |
msgid " and click the Setup Wizard button."
|
13304 |
msgstr ""
|
13305 |
|
13306 |
-
#: includes/hud-autofix-setup.php:
|
13307 |
msgid ""
|
13308 |
"W3 Total Cache (W3TC) htaccess code was not found in your Root htaccess file"
|
13309 |
msgstr ""
|
13310 |
|
13311 |
-
#: includes/hud-autofix-setup.php:
|
13312 |
-
#: includes/hud-autofix-setup.php:
|
13313 |
-
#: includes/hud-autofix-setup.php:
|
13314 |
msgid ""
|
13315 |
"If you have deactivated Root Folder BulletProof Mode temporarily then "
|
13316 |
"disregard this message. When you activate Root Folder BulletProof Mode again "
|
13317 |
"this message will go away automatically."
|
13318 |
msgstr ""
|
13319 |
|
13320 |
-
#: includes/hud-autofix-setup.php:
|
13321 |
msgid ""
|
13322 |
"If you just installed W3 Total Cache then go to the W3TC plugin settings "
|
13323 |
"page, choose and save the W3TC plugin settings that you want to use and then "
|
13324 |
"run the "
|
13325 |
msgstr ""
|
13326 |
|
13327 |
-
#: includes/hud-autofix-setup.php:
|
13328 |
msgid " to automatically setup/combine W3TC and BPS htaccess code together."
|
13329 |
msgstr ""
|
13330 |
|
13331 |
-
#: includes/hud-autofix-setup.php:
|
13332 |
msgid ""
|
13333 |
"W3 Total Cache (W3TC) Plugin htaccess code was not found in BPS Custom Code"
|
13334 |
msgstr ""
|
13335 |
|
13336 |
-
#: includes/hud-autofix-setup.php:
|
13337 |
msgid "If you just installed W3 Total Cache then go to the "
|
13338 |
msgstr ""
|
13339 |
|
13340 |
-
#: includes/hud-autofix-setup.php:
|
13341 |
msgid ""
|
13342 |
" click the Unlock htaccess File button, then go to the W3 Total Cache plugin "
|
13343 |
"settings page, choose and save the W3 Total Cache plugin settings that you "
|
13344 |
"want to use and then run the "
|
13345 |
msgstr ""
|
13346 |
|
13347 |
-
#: includes/hud-autofix-setup.php:
|
13348 |
msgid ""
|
13349 |
" to automatically setup/combine W3 Total Cache and BPS htaccess code "
|
13350 |
"together."
|
13351 |
msgstr ""
|
13352 |
|
13353 |
-
#: includes/hud-autofix-setup.php:
|
13354 |
msgid ""
|
13355 |
"Note: If you change your W3 Total Cache Plugin settings at a later time then "
|
13356 |
"repeat these steps."
|
13357 |
msgstr ""
|
13358 |
|
13359 |
-
#: includes/hud-autofix-setup.php:
|
13360 |
msgid ""
|
13361 |
"W3 Total Cache (W3TC) is deactivated and W3TC htaccess code was found in "
|
13362 |
"your Root htaccess file"
|
13363 |
msgstr ""
|
13364 |
|
13365 |
-
#: includes/hud-autofix-setup.php:
|
13366 |
msgid "If you have deactivated W3TC temporarily then disregard this message."
|
13367 |
msgstr ""
|
13368 |
|
13369 |
-
#: includes/hud-autofix-setup.php:
|
13370 |
msgid "If you are planning on permanently uninstalling W3TC then run the "
|
13371 |
msgstr ""
|
13372 |
|
13373 |
-
#: includes/hud-autofix-setup.php:
|
13374 |
msgid " after you have uninstalled/deleted the W3TC plugin."
|
13375 |
msgstr ""
|
13376 |
|
13377 |
-
#: includes/hud-autofix-setup.php:
|
13378 |
msgid ""
|
13379 |
"WP Super Cache (WPSC) htaccess code was not found in your Root htaccess file"
|
13380 |
msgstr ""
|
13381 |
|
13382 |
-
#: includes/hud-autofix-setup.php:
|
13383 |
msgid ""
|
13384 |
"If you just installed WP Super Cache then go to the WPSC plugin settings "
|
13385 |
"page, choose and save the WPSC plugin settings that you want to use and then "
|
13386 |
"run the "
|
13387 |
msgstr ""
|
13388 |
|
13389 |
-
#: includes/hud-autofix-setup.php:
|
13390 |
msgid " to automatically setup/combine WPSC and BPS htaccess code together."
|
13391 |
msgstr ""
|
13392 |
|
13393 |
-
#: includes/hud-autofix-setup.php:
|
13394 |
msgid ""
|
13395 |
"WP Super Cache (WPSC) Plugin htaccess code was not found in BPS Custom Code"
|
13396 |
msgstr ""
|
13397 |
|
13398 |
-
#: includes/hud-autofix-setup.php:
|
13399 |
msgid "If you just installed WP Super Cache then go to the "
|
13400 |
msgstr ""
|
13401 |
|
13402 |
-
#: includes/hud-autofix-setup.php:
|
13403 |
msgid ""
|
13404 |
" click the Unlock htaccess File button, then go to the WP Super Cache plugin "
|
13405 |
"settings page, choose and save the WP Super Cache plugin settings that you "
|
13406 |
"want to use and then run the "
|
13407 |
msgstr ""
|
13408 |
|
13409 |
-
#: includes/hud-autofix-setup.php:
|
13410 |
msgid ""
|
13411 |
" to automatically setup/combine WP Super Cache and BPS htaccess code "
|
13412 |
"together."
|
13413 |
msgstr ""
|
13414 |
|
13415 |
-
#: includes/hud-autofix-setup.php:
|
13416 |
msgid ""
|
13417 |
"Note: If you change your WP Super Cache Plugin settings at a later time then "
|
13418 |
"repeat these steps."
|
13419 |
msgstr ""
|
13420 |
|
13421 |
-
#: includes/hud-autofix-setup.php:
|
13422 |
msgid ""
|
13423 |
"WP Super Cache (WPSC) is deactivated and WPSC htaccess code was found in "
|
13424 |
"your Root htaccess file"
|
13425 |
msgstr ""
|
13426 |
|
13427 |
-
#: includes/hud-autofix-setup.php:
|
13428 |
msgid "If you have deactivated WPSC temporarily then disregard this message."
|
13429 |
msgstr ""
|
13430 |
|
13431 |
-
#: includes/hud-autofix-setup.php:
|
13432 |
msgid "If you are planning on permanently uninstalling WPSC then run the "
|
13433 |
msgstr ""
|
13434 |
|
13435 |
-
#: includes/hud-autofix-setup.php:
|
13436 |
msgid " after you have uninstalled/deleted the WPSC plugin."
|
13437 |
msgstr ""
|
13438 |
|
13439 |
-
#: includes/hud-autofix-setup.php:
|
13440 |
msgid "Comet Cache htaccess code was not found in your Root htaccess file"
|
13441 |
msgstr ""
|
13442 |
|
13443 |
-
#: includes/hud-autofix-setup.php:
|
13444 |
msgid "If you just installed Comet Cache then go to the "
|
13445 |
msgstr ""
|
13446 |
|
13447 |
-
#: includes/hud-autofix-setup.php:
|
13448 |
msgid ""
|
13449 |
" click the Unlock htaccess File button, go to the Comet Cache plugin "
|
13450 |
"settings page, choose and save the Comet Cache plugin settings that you want "
|
13451 |
"to use and then run the "
|
13452 |
msgstr ""
|
13453 |
|
13454 |
-
#: includes/hud-autofix-setup.php:
|
13455 |
msgid ""
|
13456 |
" to automatically setup/combine Comet Cache and BPS htaccess code together."
|
13457 |
msgstr ""
|
13458 |
|
13459 |
-
#: includes/hud-autofix-setup.php:
|
13460 |
msgid "Comet Cache Plugin htaccess code was not found in BPS Custom Code"
|
13461 |
msgstr ""
|
13462 |
|
13463 |
-
#: includes/hud-autofix-setup.php:
|
13464 |
msgid ""
|
13465 |
" click the Unlock htaccess File button, then go to the Comet Cache plugin "
|
13466 |
"settings page, choose and save the Comet Cache plugin settings that you want "
|
13467 |
"to use and then run the "
|
13468 |
msgstr ""
|
13469 |
|
13470 |
-
#: includes/hud-autofix-setup.php:
|
13471 |
msgid ""
|
13472 |
"Note: If you change your Comet Cache Plugin settings at a later time then "
|
13473 |
"repeat these steps."
|
13474 |
msgstr ""
|
13475 |
|
13476 |
-
#: includes/hud-autofix-setup.php:
|
13477 |
msgid ""
|
13478 |
"Comet Cache is deactivated and Comet Cache htaccess code was found in your "
|
13479 |
"Root htaccess file"
|
13480 |
msgstr ""
|
13481 |
|
13482 |
-
#: includes/hud-autofix-setup.php:
|
13483 |
msgid ""
|
13484 |
"If you have deactivated Comet Cache temporarily then disregard this message."
|
13485 |
msgstr ""
|
13486 |
|
13487 |
-
#: includes/hud-autofix-setup.php:
|
13488 |
msgid ""
|
13489 |
"If you are planning on permanently uninstalling Comet Cache then run the "
|
13490 |
msgstr ""
|
13491 |
|
13492 |
-
#: includes/hud-autofix-setup.php:
|
13493 |
msgid " after you have uninstalled/deleted the Comet Cache plugin."
|
13494 |
msgstr ""
|
13495 |
|
13496 |
-
#: includes/hud-autofix-setup.php:
|
13497 |
msgid ""
|
13498 |
"WP Fastest Cache (WPFC) htaccess code was not found in your Root htaccess "
|
13499 |
"file"
|
13500 |
msgstr ""
|
13501 |
|
13502 |
-
#: includes/hud-autofix-setup.php:
|
13503 |
msgid "If you just installed WP Fastest Cache then go to the "
|
13504 |
msgstr ""
|
13505 |
|
13506 |
-
#: includes/hud-autofix-setup.php:
|
13507 |
msgid ""
|
13508 |
" click the Unlock htaccess File button, then go to the WPFC plugin settings "
|
13509 |
"page, choose and save the WPFC plugin settings that you want to use and then "
|
13510 |
"run the "
|
13511 |
msgstr ""
|
13512 |
|
13513 |
-
#: includes/hud-autofix-setup.php:
|
13514 |
msgid " to automatically setup/combine WPFC and BPS htaccess code together."
|
13515 |
msgstr ""
|
13516 |
|
13517 |
-
#: includes/hud-autofix-setup.php:
|
13518 |
msgid ""
|
13519 |
"WP Fastest Cache (WPFC) Plugin htaccess code was not found in BPS Custom Code"
|
13520 |
msgstr ""
|
13521 |
|
13522 |
-
#: includes/hud-autofix-setup.php:
|
13523 |
msgid ""
|
13524 |
" click the Unlock htaccess File button, then go to the WP Fastest Cache "
|
13525 |
"plugin settings page, choose and save the WP Fastest Cache plugin settings "
|
13526 |
"that you want to use and then run the "
|
13527 |
msgstr ""
|
13528 |
|
13529 |
-
#: includes/hud-autofix-setup.php:
|
13530 |
msgid ""
|
13531 |
" to automatically setup/combine WP Fastest Cache and BPS htaccess code "
|
13532 |
"together."
|
13533 |
msgstr ""
|
13534 |
|
13535 |
-
#: includes/hud-autofix-setup.php:
|
13536 |
msgid ""
|
13537 |
"Note: If you change your WP Fastest Cache Plugin settings at a later time "
|
13538 |
"then repeat these steps."
|
13539 |
msgstr ""
|
13540 |
|
13541 |
-
#: includes/hud-autofix-setup.php:
|
13542 |
msgid ""
|
13543 |
"WP Fastest Cache (WPFC) is deactivated and WPFC htaccess code was found in "
|
13544 |
"your Root htaccess file"
|
13545 |
msgstr ""
|
13546 |
|
13547 |
-
#: includes/hud-autofix-setup.php:
|
13548 |
msgid "If you have deactivated WPFC temporarily then disregard this message."
|
13549 |
msgstr ""
|
13550 |
|
13551 |
-
#: includes/hud-autofix-setup.php:
|
13552 |
msgid "If you are planning on permanently uninstalling WPFC then run the "
|
13553 |
msgstr ""
|
13554 |
|
13555 |
-
#: includes/hud-autofix-setup.php:
|
13556 |
msgid " after you have uninstalled/deleted the WPFC plugin."
|
13557 |
msgstr ""
|
13558 |
|
13559 |
-
#: includes/hud-autofix-setup.php:
|
13560 |
msgid "WP Rocket htaccess code was not found in your Root htaccess file"
|
13561 |
msgstr ""
|
13562 |
|
13563 |
-
#: includes/hud-autofix-setup.php:
|
13564 |
msgid "If you just installed WP Rocket then go to the "
|
13565 |
msgstr ""
|
13566 |
|
13567 |
-
#: includes/hud-autofix-setup.php:
|
13568 |
msgid ""
|
13569 |
" click the Unlock htaccess File button, then go to the WP Rocket plugin "
|
13570 |
"settings page, choose and save the WP Rocket plugin settings that you want "
|
13571 |
"to use and then run the "
|
13572 |
msgstr ""
|
13573 |
|
13574 |
-
#: includes/hud-autofix-setup.php:
|
13575 |
msgid ""
|
13576 |
" to automatically setup/combine WP Rocket and BPS htaccess code together."
|
13577 |
msgstr ""
|
13578 |
|
13579 |
-
#: includes/hud-autofix-setup.php:
|
13580 |
msgid "WP Rocket Plugin htaccess code was not found in BPS Custom Code"
|
13581 |
msgstr ""
|
13582 |
|
13583 |
-
#: includes/hud-autofix-setup.php:
|
13584 |
msgid ""
|
13585 |
"Note: If you change your WP Rocket Plugin settings at a later time then "
|
13586 |
"repeat these steps."
|
13587 |
msgstr ""
|
13588 |
|
13589 |
-
#: includes/hud-autofix-setup.php:
|
13590 |
msgid ""
|
13591 |
"WP Rocket is deactivated and WP Rocket htaccess code was found in your Root "
|
13592 |
"htaccess file"
|
13593 |
msgstr ""
|
13594 |
|
13595 |
-
#: includes/hud-autofix-setup.php:
|
13596 |
msgid ""
|
13597 |
"If you have deactivated WP Rocket temporarily then disregard this message."
|
13598 |
msgstr ""
|
13599 |
|
13600 |
-
#: includes/hud-autofix-setup.php:
|
13601 |
msgid "If you are planning on permanently uninstalling WP Rocket then run the "
|
13602 |
msgstr ""
|
13603 |
|
13604 |
-
#: includes/hud-autofix-setup.php:
|
13605 |
msgid " after you have uninstalled/deleted the WP Rocket plugin."
|
13606 |
msgstr ""
|
13607 |
|
13608 |
-
#: includes/hud-autofix-setup.php:
|
13609 |
msgid ""
|
13610 |
"LiteSpeed Cache Plugin htaccess code was not found in your Root htaccess file"
|
13611 |
msgstr ""
|
13612 |
|
13613 |
-
#: includes/hud-autofix-setup.php:
|
13614 |
msgid "If you just installed LiteSpeed Cache then go to the "
|
13615 |
msgstr ""
|
13616 |
|
13617 |
-
#: includes/hud-autofix-setup.php:
|
13618 |
msgid ""
|
13619 |
" click the Unlock htaccess File button, then go to the LiteSpeed Cache "
|
13620 |
"plugin settings page, choose and save the LiteSpeed Cache plugin settings "
|
13621 |
"that you want to use and then run the "
|
13622 |
msgstr ""
|
13623 |
|
13624 |
-
#: includes/hud-autofix-setup.php:
|
13625 |
msgid ""
|
13626 |
" to automatically setup/combine LiteSpeed Cache and BPS htaccess code "
|
13627 |
"together."
|
13628 |
msgstr ""
|
13629 |
|
13630 |
-
#: includes/hud-autofix-setup.php:
|
13631 |
msgid "LiteSpeed Cache Plugin htaccess code was not found in BPS Custom Code"
|
13632 |
msgstr ""
|
13633 |
|
13634 |
-
#: includes/hud-autofix-setup.php:
|
13635 |
msgid ""
|
13636 |
"Note: If you change your LiteSpeed Cache Plugin settings at a later time "
|
13637 |
"then repeat these steps."
|
13638 |
msgstr ""
|
13639 |
|
13640 |
-
#: includes/hud-autofix-setup.php:
|
13641 |
msgid ""
|
13642 |
"LiteSpeed Cache Plugin is deactivated and LiteSpeed Cache htaccess code was "
|
13643 |
"found in your Root htaccess file"
|
13644 |
msgstr ""
|
13645 |
|
13646 |
-
#: includes/hud-autofix-setup.php:
|
13647 |
msgid ""
|
13648 |
"If you have deactivated LiteSpeed Cache temporarily then disregard this "
|
13649 |
"message."
|
13650 |
msgstr ""
|
13651 |
|
13652 |
-
#: includes/hud-autofix-setup.php:
|
13653 |
msgid ""
|
13654 |
"If you are planning on permanently uninstalling LiteSpeed Cache then run the "
|
13655 |
msgstr ""
|
13656 |
|
13657 |
-
#: includes/hud-autofix-setup.php:
|
13658 |
msgid " after you have uninstalled/deleted the LiteSpeed Cache plugin."
|
13659 |
msgstr ""
|
13660 |
|
@@ -14537,35 +14508,55 @@ msgstr ""
|
|
14537 |
msgid "Run a new MScan scan"
|
14538 |
msgstr ""
|
14539 |
|
14540 |
-
#: includes/hud-dismiss-functions.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14541 |
msgid "Script|File Owner User ID Mismatch Notice"
|
14542 |
msgstr ""
|
14543 |
|
14544 |
-
#: includes/hud-dismiss-functions.php:
|
|
|
|
|
|
|
|
|
|
|
14545 |
msgid ""
|
14546 |
-
"
|
14547 |
-
"
|
14548 |
msgstr ""
|
14549 |
|
14550 |
-
#: includes/hud-dismiss-functions.php:
|
14551 |
msgid ""
|
14552 |
-
"
|
14553 |
-
|
14554 |
-
|
|
|
|
|
14555 |
msgstr ""
|
14556 |
|
14557 |
-
#: includes/hud-dismiss-functions.php:
|
14558 |
-
msgid "BPS Pro 25% Off Sale
|
14559 |
msgstr ""
|
14560 |
|
14561 |
-
#: includes/hud-dismiss-functions.php:
|
14562 |
msgid ""
|
14563 |
"One-time Purchase Price: $52.50. No Recurring Yearly Costs Or Subscriptions. "
|
14564 |
"Unlimited installations. Free Upgrades For Life. Free Technical Support For "
|
14565 |
"Life."
|
14566 |
msgstr ""
|
14567 |
|
14568 |
-
#: includes/hud-dismiss-functions.php:
|
14569 |
msgid "Buy BPS Pro"
|
14570 |
msgstr ""
|
14571 |
|
3 |
msgstr ""
|
4 |
"Project-Id-Version: bulletproof-security\n"
|
5 |
"Report-Msgid-Bugs-To: \n"
|
6 |
+
"POT-Creation-Date: 2022-04-03 10:54-0700\n"
|
7 |
"PO-Revision-Date: 2015-06-20 19:13-0800\n"
|
8 |
"Last-Translator: Ed Alexander <edward@ait-pro.com>\n"
|
9 |
"Language-Team: AITpro <info@ait-pro.com>\n"
|
428 |
msgstr ""
|
429 |
|
430 |
#: admin/core/core-custom-code.php:605 admin/core/core-custom-code.php:983
|
431 |
+
#: admin/core/core.php:2018
|
432 |
msgid "Click the Custom Code Question Mark help button for more help info."
|
433 |
msgstr ""
|
434 |
|
570 |
|
571 |
#: admin/core/core-export-import.php:110 admin/login/lsm-export.php:49
|
572 |
#: admin/wizard/wizard-backup.php:247 admin/wizard/wizard-backup.php:289
|
573 |
+
#: admin/wizard/wizard.php:1926
|
574 |
msgid ""
|
575 |
"If you see a 403 error and/or are unable to download the zip file then click "
|
576 |
"here: "
|
578 |
|
579 |
#: admin/core/core-export-import.php:110 admin/login/lsm-export.php:49
|
580 |
#: admin/wizard/wizard-backup.php:247 admin/wizard/wizard-backup.php:289
|
581 |
+
#: admin/wizard/wizard.php:1057 admin/wizard/wizard.php:1156
|
582 |
+
#: admin/wizard/wizard.php:1159 admin/wizard/wizard.php:1926
|
583 |
#: includes/hud-autofix-whitelist.php:861
|
584 |
msgid "Setup Wizard Options"
|
585 |
msgstr ""
|
591 |
msgstr ""
|
592 |
|
593 |
#: admin/core/core-export-import.php:110 admin/login/lsm-export.php:49
|
594 |
+
#: admin/wizard/wizard.php:1926
|
595 |
msgid "Download Zip Export"
|
596 |
msgstr ""
|
597 |
|
598 |
+
#: admin/core/core-export-import.php:139 admin/wizard/wizard.php:2090
|
599 |
msgid "Zip File Upload Successful."
|
600 |
msgstr ""
|
601 |
|
602 |
+
#: admin/core/core-export-import.php:150 admin/wizard/wizard.php:2101
|
603 |
msgid "Zip File Exraction Successful. Method: ZipArchive class."
|
604 |
msgstr ""
|
605 |
|
629 |
msgid "3. Click the wp-admin Folder BulletProof Mode Activate button."
|
630 |
msgstr ""
|
631 |
|
632 |
+
#: admin/core/core-export-import.php:164 admin/wizard/wizard.php:2112
|
633 |
msgid "ERROR: Zip File Extraction Failed. Method: ZipArchive class."
|
634 |
msgstr ""
|
635 |
|
636 |
+
#: admin/core/core-export-import.php:179 admin/wizard/wizard.php:2127
|
637 |
msgid "Zip File Extraction Successful. Method: PclZip."
|
638 |
msgstr ""
|
639 |
|
640 |
+
#: admin/core/core-export-import.php:193 admin/wizard/wizard.php:2139
|
641 |
msgid "ERROR: Zip File Extraction Failed. Method: PclZip."
|
642 |
msgstr ""
|
643 |
|
644 |
+
#: admin/core/core-export-import.php:201 admin/wizard/wizard.php:2147
|
645 |
msgid "ERROR: Zip File Upload Failed."
|
646 |
msgstr ""
|
647 |
|
672 |
msgstr ""
|
673 |
|
674 |
#: admin/core/core-forms.php:18 admin/core/core-forms.php:104
|
675 |
+
#: admin/core/core.php:1292
|
676 |
msgid "htaccess Files Disabled: wp-admin htaccess file writing is disabled. "
|
677 |
msgstr ""
|
678 |
|
682 |
#: admin/core/core-forms.php:375 admin/core/core-forms.php:441
|
683 |
#: admin/core/core-htaccess-code.php:463 admin/core/core-htaccess-code.php:547
|
684 |
#: admin/core/core-htaccess-code.php:616 admin/core/core-htaccess-code.php:700
|
685 |
+
#: admin/core/core.php:899 admin/core/core.php:989 admin/core/core.php:1103
|
686 |
+
#: admin/core/core.php:1193 admin/core/core.php:1292
|
687 |
+
#: admin/maintenance/maintenance.php:956 admin/maintenance/maintenance.php:1273
|
688 |
+
#: admin/maintenance/maintenance.php:1792
|
689 |
+
#: admin/maintenance/maintenance.php:1923
|
690 |
+
#: admin/maintenance/maintenance.php:2117 admin/wizard/wizard-functions.php:45
|
691 |
msgid "Click this link for help information: "
|
692 |
msgstr ""
|
693 |
|
697 |
#: admin/core/core-forms.php:375 admin/core/core-forms.php:441
|
698 |
#: admin/core/core-htaccess-code.php:463 admin/core/core-htaccess-code.php:547
|
699 |
#: admin/core/core-htaccess-code.php:616 admin/core/core-htaccess-code.php:700
|
700 |
+
#: admin/core/core.php:899 admin/core/core.php:989 admin/core/core.php:1103
|
701 |
+
#: admin/core/core.php:1193 admin/core/core.php:1292
|
702 |
+
#: admin/maintenance/maintenance.php:956 admin/maintenance/maintenance.php:1273
|
703 |
+
#: admin/maintenance/maintenance.php:1792
|
704 |
+
#: admin/maintenance/maintenance.php:1923
|
705 |
+
#: admin/maintenance/maintenance.php:2117 admin/wizard/wizard-functions.php:45
|
706 |
+
#: admin/wizard/wizard.php:1069
|
707 |
msgid "htaccess Files Disabled Forum Topic"
|
708 |
msgstr ""
|
709 |
|
998 |
"Question Mark help file for BPS troubleshooting steps."
|
999 |
msgstr ""
|
1000 |
|
1001 |
+
#: admin/core/core-help-text.php:15 admin/wizard/wizard.php:1116
|
1002 |
msgid "Notes: "
|
1003 |
msgstr ""
|
1004 |
|
1065 |
"Send Email Alerts."
|
1066 |
msgstr ""
|
1067 |
|
1068 |
+
#: admin/core/core-help-text.php:18 admin/core/core.php:522
|
1069 |
msgid "HPF Cron Check Frequency:"
|
1070 |
msgstr ""
|
1071 |
|
1077 |
"Options button to save your settings."
|
1078 |
msgstr ""
|
1079 |
|
1080 |
+
#: admin/core/core-help-text.php:18 admin/core/core.php:533
|
1081 |
msgid "HPF Cron On|Off:"
|
1082 |
msgstr ""
|
1083 |
|
1087 |
"HPF Cron Off. Click the Save HPF Cron Options button to save your settings."
|
1088 |
msgstr ""
|
1089 |
|
1090 |
+
#: admin/core/core-help-text.php:18 admin/core/core.php:557
|
1091 |
msgid "Ignore Hidden Plugin Folders & Files:"
|
1092 |
msgstr ""
|
1093 |
|
1199 |
"will be updated/saved."
|
1200 |
msgstr ""
|
1201 |
|
1202 |
+
#: admin/core/core-help-text.php:30 admin/security-log/security-log.php:235
|
1203 |
msgid "Important Notes: "
|
1204 |
msgstr ""
|
1205 |
|
1703 |
msgstr ""
|
1704 |
|
1705 |
#: admin/core/core-htaccess-code.php:59 admin/core/core-htaccess-code.php:135
|
1706 |
+
#: admin/maintenance/maintenance.php:474 admin/maintenance/maintenance.php:494
|
1707 |
msgid "The file "
|
1708 |
msgstr ""
|
1709 |
|
1710 |
#: admin/core/core-htaccess-code.php:59 admin/core/core-htaccess-code.php:135
|
1711 |
+
#: admin/maintenance/maintenance.php:474 admin/maintenance/maintenance.php:494
|
1712 |
msgid " is not writable or does not exist."
|
1713 |
msgstr ""
|
1714 |
|
1736 |
|
1737 |
#: admin/core/core-htaccess-code.php:463 admin/core/core-htaccess-code.php:547
|
1738 |
#: admin/core/core-htaccess-code.php:616 admin/core/core-htaccess-code.php:700
|
1739 |
+
#: admin/core/core.php:1193
|
1740 |
msgid "htaccess Files Disabled: Root htaccess file writing is disabled. "
|
1741 |
msgstr ""
|
1742 |
|
1743 |
#: admin/core/core-htaccess-code.php:485 admin/core/core-htaccess-code.php:638
|
1744 |
+
#: admin/core/core.php:1036
|
1745 |
msgid "Failed to copy your Custom default.htaccess file: "
|
1746 |
msgstr ""
|
1747 |
|
1748 |
#: admin/core/core-htaccess-code.php:485 admin/core/core-htaccess-code.php:638
|
1749 |
+
#: admin/core/core.php:1036
|
1750 |
msgid " to: "
|
1751 |
msgstr ""
|
1752 |
|
1801 |
msgid "htaccess File Editor"
|
1802 |
msgstr ""
|
1803 |
|
1804 |
+
#: admin/core/core.php:195 admin/core/core.php:1874 admin/core/core.php:1877
|
1805 |
msgid "Custom Code"
|
1806 |
msgstr ""
|
1807 |
|
1821 |
msgid "Help & FAQ"
|
1822 |
msgstr ""
|
1823 |
|
1824 |
+
#: admin/core/core.php:199 admin/core/core.php:221 admin/core/core.php:349
|
1825 |
+
#: admin/core/core.php:456 admin/core/core.php:592 admin/core/core.php:686
|
1826 |
+
#: admin/core/core.php:780 admin/core/core.php:833 admin/core/core.php:1884
|
1827 |
+
#: admin/core/core.php:2097 admin/db-backup-security/db-backup-security.php:291
|
1828 |
+
#: admin/db-backup-security/db-backup-security.php:1273
|
1829 |
+
#: admin/db-backup-security/db-backup-security.php:1451
|
1830 |
+
#: admin/email-log-settings/email-log-settings.php:279
|
1831 |
+
#: admin/login/login.php:205 admin/login/login.php:830
|
1832 |
+
#: admin/login/login.php:1354 admin/login/login.php:1923
|
1833 |
+
#: admin/maintenance/maintenance.php:207 admin/mscan/mscan.php:242
|
1834 |
+
#: admin/mscan/mscan.php:2138 admin/mscan/mscan.php:2367
|
1835 |
+
#: admin/mscan/mscan.php:3083 admin/security-log/security-log.php:225
|
1836 |
+
#: admin/system-info/system-info.php:82 admin/theme-skin/theme-skin.php:82
|
1837 |
+
#: admin/wizard/wizard.php:1100 admin/wizard/wizard.php:1171
|
1838 |
+
#: admin/wizard/wizard.php:1769 bulletproof-security.php:183
|
1839 |
msgid "BPS Pro Features"
|
1840 |
msgstr ""
|
1841 |
|
1842 |
+
#: admin/core/core.php:211 admin/core/core.php:214 admin/core/core.php:342
|
1843 |
msgid "Root Folder BulletProof Mode (RBM)"
|
1844 |
msgstr ""
|
1845 |
|
1846 |
+
#: admin/core/core.php:218 admin/core/core.php:346 admin/core/core.php:453
|
1847 |
+
#: admin/core/core.php:589 admin/core/core.php:683 admin/core/core.php:777
|
1848 |
+
#: admin/core/core.php:830 admin/core/core.php:1881
|
1849 |
+
#: admin/db-backup-security/db-backup-security.php:288
|
1850 |
+
#: admin/db-backup-security/db-backup-security.php:1270
|
1851 |
+
#: admin/db-backup-security/db-backup-security.php:1448
|
1852 |
+
#: admin/email-log-settings/email-log-settings.php:276
|
1853 |
+
#: admin/login/login.php:202 admin/login/login.php:827
|
1854 |
+
#: admin/login/login.php:1351 admin/login/login.php:1920
|
1855 |
+
#: admin/maintenance/maintenance.php:204 admin/mscan/mscan-help-text.php:65
|
1856 |
#: admin/mscan/mscan-help-text.php:78 admin/mscan/mscan-help-text.php:85
|
1857 |
+
#: admin/mscan/mscan.php:239 admin/mscan/mscan.php:2135
|
1858 |
+
#: admin/mscan/mscan.php:2364 admin/mscan/mscan.php:3080
|
1859 |
+
#: admin/security-log/security-log.php:222 admin/system-info/system-info.php:79
|
1860 |
+
#: admin/theme-skin/theme-skin.php:78 admin/wizard/wizard.php:1097
|
1861 |
+
#: admin/wizard/wizard.php:1168 admin/wizard/wizard.php:1766
|
1862 |
msgid ""
|
1863 |
"This Question Mark Help window is draggable (top) and resizable (bottom "
|
1864 |
"right corner)"
|
1865 |
msgstr ""
|
1866 |
|
1867 |
+
#: admin/core/core.php:221 admin/core/core.php:349 admin/core/core.php:456
|
1868 |
+
#: admin/core/core.php:592 admin/core/core.php:686 admin/core/core.php:780
|
1869 |
+
#: admin/core/core.php:833 admin/core/core.php:1884 admin/core/core.php:2097
|
1870 |
+
#: admin/core/core.php:2177 admin/db-backup-security/db-backup-security.php:291
|
1871 |
+
#: admin/db-backup-security/db-backup-security.php:1273
|
1872 |
+
#: admin/db-backup-security/db-backup-security.php:1451
|
1873 |
+
#: admin/email-log-settings/email-log-settings.php:279
|
1874 |
+
#: admin/login/login.php:205 admin/login/login.php:830
|
1875 |
+
#: admin/login/login.php:1354 admin/login/login.php:1923
|
1876 |
+
#: admin/maintenance/maintenance.php:207 admin/mscan/mscan.php:242
|
1877 |
+
#: admin/mscan/mscan.php:2138 admin/mscan/mscan.php:2367
|
1878 |
+
#: admin/mscan/mscan.php:3083 admin/security-log/security-log.php:225
|
1879 |
+
#: admin/system-info/system-info.php:82 admin/theme-skin/theme-skin.php:82
|
1880 |
+
#: admin/wizard/wizard.php:1100 admin/wizard/wizard.php:1171
|
1881 |
+
#: admin/wizard/wizard.php:1769
|
1882 |
msgid ""
|
1883 |
"Want even more security protection for the ridiculously cheap one-time price "
|
1884 |
"of $69.95"
|
1885 |
msgstr ""
|
1886 |
|
1887 |
+
#: admin/core/core.php:221 admin/core/core.php:349 admin/core/core.php:456
|
1888 |
+
#: admin/core/core.php:592 admin/core/core.php:686 admin/core/core.php:780
|
1889 |
+
#: admin/core/core.php:833 admin/core/core.php:1884 admin/core/core.php:2097
|
1890 |
+
#: admin/core/core.php:2179 admin/db-backup-security/db-backup-security.php:291
|
1891 |
+
#: admin/db-backup-security/db-backup-security.php:1273
|
1892 |
+
#: admin/db-backup-security/db-backup-security.php:1451
|
1893 |
+
#: admin/email-log-settings/email-log-settings.php:279
|
1894 |
+
#: admin/login/login.php:205 admin/login/login.php:830
|
1895 |
+
#: admin/login/login.php:1354 admin/login/login.php:1923
|
1896 |
+
#: admin/maintenance/maintenance.php:207 admin/mscan/mscan.php:242
|
1897 |
+
#: admin/mscan/mscan.php:2138 admin/mscan/mscan.php:2367
|
1898 |
+
#: admin/mscan/mscan.php:3083 admin/security-log/security-log.php:225
|
1899 |
+
#: admin/system-info/system-info.php:82 admin/theme-skin/theme-skin.php:82
|
1900 |
+
#: admin/wizard/wizard.php:1100 admin/wizard/wizard.php:1171
|
1901 |
+
#: admin/wizard/wizard.php:1769
|
1902 |
msgid ""
|
1903 |
"BPS Pro comes with free unlimited installations, upgrades & support for "
|
1904 |
"life. No yearly subscriptions or additional costs."
|
1905 |
msgstr ""
|
1906 |
|
1907 |
+
#: admin/core/core.php:221 admin/core/core.php:349 admin/core/core.php:456
|
1908 |
+
#: admin/core/core.php:592 admin/core/core.php:686 admin/core/core.php:780
|
1909 |
+
#: admin/core/core.php:833 admin/core/core.php:1884 admin/core/core.php:2097
|
1910 |
+
#: admin/db-backup-security/db-backup-security.php:291
|
1911 |
+
#: admin/db-backup-security/db-backup-security.php:1273
|
1912 |
+
#: admin/db-backup-security/db-backup-security.php:1451
|
1913 |
+
#: admin/email-log-settings/email-log-settings.php:279
|
1914 |
+
#: admin/login/login.php:205 admin/login/login.php:830
|
1915 |
+
#: admin/login/login.php:1354 admin/login/login.php:1923
|
1916 |
+
#: admin/maintenance/maintenance.php:207 admin/mscan/mscan.php:242
|
1917 |
+
#: admin/mscan/mscan.php:2138 admin/mscan/mscan.php:2367
|
1918 |
+
#: admin/mscan/mscan.php:3083 admin/security-log/security-log.php:225
|
1919 |
+
#: admin/system-info/system-info.php:82 admin/theme-skin/theme-skin.php:82
|
1920 |
+
#: admin/wizard/wizard.php:1100 admin/wizard/wizard.php:1171
|
1921 |
+
#: admin/wizard/wizard.php:1769
|
1922 |
msgid ""
|
1923 |
"BBS Pro has an amazing track record. BPS Pro is installed on 60,000+ "
|
1924 |
"websites. Not a single one of those websites has been hacked in 10+ years."
|
1925 |
msgstr ""
|
1926 |
|
1927 |
+
#: admin/core/core.php:221 admin/core/core.php:349 admin/core/core.php:456
|
1928 |
+
#: admin/core/core.php:592 admin/core/core.php:686 admin/core/core.php:780
|
1929 |
+
#: admin/core/core.php:833 admin/core/core.php:1884 admin/core/core.php:2097
|
1930 |
+
#: admin/db-backup-security/db-backup-security.php:291
|
1931 |
+
#: admin/db-backup-security/db-backup-security.php:1273
|
1932 |
+
#: admin/db-backup-security/db-backup-security.php:1451
|
1933 |
+
#: admin/email-log-settings/email-log-settings.php:279
|
1934 |
+
#: admin/login/login.php:205 admin/login/login.php:830
|
1935 |
+
#: admin/login/login.php:1354 admin/login/login.php:1923
|
1936 |
+
#: admin/maintenance/maintenance.php:207 admin/mscan/mscan.php:242
|
1937 |
+
#: admin/mscan/mscan.php:2138 admin/mscan/mscan.php:2367
|
1938 |
+
#: admin/mscan/mscan.php:3083 admin/security-log/security-log.php:225
|
1939 |
+
#: admin/system-info/system-info.php:82 admin/theme-skin/theme-skin.php:82
|
1940 |
+
#: admin/wizard/wizard.php:1100 admin/wizard/wizard.php:1171
|
1941 |
+
#: admin/wizard/wizard.php:1769
|
1942 |
msgid "Get BPS Pro"
|
1943 |
msgstr ""
|
1944 |
|
1945 |
+
#: admin/core/core.php:224 admin/core/core.php:352 admin/core/core.php:1888
|
1946 |
+
#: admin/db-backup-security/db-backup-security.php:295
|
1947 |
+
#: admin/email-log-settings/email-log-settings.php:283
|
1948 |
+
#: admin/login/login.php:1357 admin/maintenance/maintenance.php:211
|
1949 |
+
#: admin/mscan/mscan.php:245 admin/system-info/system-info.php:86
|
1950 |
msgid "Forum Help Links: "
|
1951 |
msgstr ""
|
1952 |
|
1953 |
+
#: admin/core/core.php:227 admin/core/core.php:355
|
1954 |
msgid "Setup Wizard & Other Video Tutorials"
|
1955 |
msgstr ""
|
1956 |
|
1957 |
+
#: admin/core/core.php:228 admin/core/core.php:356
|
1958 |
+
#: admin/email-log-settings/email-log-settings.php:286
|
1959 |
+
#: admin/security-log/security-log.php:232
|
1960 |
msgid "BPS Troubleshooting Steps"
|
1961 |
msgstr ""
|
1962 |
|
1963 |
+
#: admin/core/core.php:262 admin/core/core.php:265 admin/core/core.php:268
|
1964 |
+
#: admin/core/core.php:271 admin/core/core.php:279 admin/core/core.php:282
|
1965 |
+
#: admin/core/core.php:285 admin/core/core.php:288
|
1966 |
msgid "RBM Status: "
|
1967 |
msgstr ""
|
1968 |
|
1969 |
+
#: admin/core/core.php:262 admin/core/core.php:279 admin/core/core.php:395
|
1970 |
+
#: admin/core/core.php:409 admin/core/core.php:624 admin/core/core.php:638
|
1971 |
+
#: admin/core/core.php:718 admin/core/core.php:732
|
1972 |
msgid "Disabled"
|
1973 |
msgstr ""
|
1974 |
|
1975 |
+
#: admin/core/core.php:265 admin/core/core.php:282
|
1976 |
msgid "Root htaccess File Does Not Exist"
|
1977 |
msgstr ""
|
1978 |
|
1979 |
+
#: admin/core/core.php:268 admin/core/core.php:285 admin/core/core.php:401
|
1980 |
+
#: admin/core/core.php:415 admin/core/core.php:630 admin/core/core.php:644
|
1981 |
+
#: admin/core/core.php:724 admin/core/core.php:738
|
1982 |
+
#: admin/system-info/system-info.php:238 admin/system-info/system-info.php:279
|
1983 |
msgid "Activated"
|
1984 |
msgstr ""
|
1985 |
|
1986 |
+
#: admin/core/core.php:271 admin/core/core.php:288 admin/core/core.php:398
|
1987 |
+
#: admin/core/core.php:412 admin/core/core.php:627 admin/core/core.php:641
|
1988 |
+
#: admin/core/core.php:721 admin/core/core.php:735
|
1989 |
+
#: admin/system-info/system-info.php:247 admin/system-info/system-info.php:281
|
1990 |
msgid "Deactivated"
|
1991 |
msgstr ""
|
1992 |
|
1993 |
+
#: admin/core/core.php:305 admin/core/core.php:323
|
1994 |
msgid "Click OK to Activate Root Folder BulletProof Mode or click Cancel."
|
1995 |
msgstr ""
|
1996 |
|
1997 |
+
#: admin/core/core.php:313 admin/core/core.php:331
|
1998 |
msgid "Click OK to Deactivate Root Folder BulletProof Mode or click Cancel."
|
1999 |
msgstr ""
|
2000 |
|
2001 |
+
#: admin/core/core.php:339
|
2002 |
msgid "wp-admin Folder BulletProof Mode (WBM)"
|
2003 |
msgstr ""
|
2004 |
|
2005 |
+
#: admin/core/core.php:395 admin/core/core.php:398 admin/core/core.php:401
|
2006 |
+
#: admin/core/core.php:409 admin/core/core.php:412 admin/core/core.php:415
|
2007 |
msgid "WBM Status: "
|
2008 |
msgstr ""
|
2009 |
|
2010 |
+
#: admin/core/core.php:430
|
2011 |
msgid "Click OK to Activate wp-admin Folder BulletProof Mode or click Cancel."
|
2012 |
msgstr ""
|
2013 |
|
2014 |
+
#: admin/core/core.php:438
|
2015 |
msgid ""
|
2016 |
"Click OK to Deactivate wp-admin Folder BulletProof Mode or click Cancel."
|
2017 |
msgstr ""
|
2018 |
|
2019 |
+
#: admin/core/core.php:446 admin/core/core.php:449
|
2020 |
msgid "Hidden Plugin Folders|Files Cron (HPF)"
|
2021 |
msgstr ""
|
2022 |
|
2023 |
+
#: admin/core/core.php:487 admin/core/core.php:490 admin/core/core.php:498
|
2024 |
+
#: admin/core/core.php:501
|
2025 |
msgid "HPF Status: "
|
2026 |
msgstr ""
|
2027 |
|
2028 |
+
#: admin/core/core.php:487 admin/core/core.php:498 admin/core/core.php:535
|
2029 |
msgid "HPF Cron On"
|
2030 |
msgstr ""
|
2031 |
|
2032 |
+
#: admin/core/core.php:490 admin/core/core.php:501 admin/core/core.php:536
|
2033 |
msgid "HPF Cron Off"
|
2034 |
msgstr ""
|
2035 |
|
2036 |
+
#: admin/core/core.php:524
|
2037 |
msgid "Run Check Every 1 Minute"
|
2038 |
msgstr ""
|
2039 |
|
2040 |
+
#: admin/core/core.php:525
|
2041 |
msgid "Run Check Every 5 Minutes"
|
2042 |
msgstr ""
|
2043 |
|
2044 |
+
#: admin/core/core.php:526
|
2045 |
msgid "Run Check Every 10 Minutes"
|
2046 |
msgstr ""
|
2047 |
|
2048 |
+
#: admin/core/core.php:527
|
2049 |
msgid "Run Check Every 15 Minutes"
|
2050 |
msgstr ""
|
2051 |
|
2052 |
+
#: admin/core/core.php:528
|
2053 |
msgid "Run Check Every 30 Minutes"
|
2054 |
msgstr ""
|
2055 |
|
2056 |
+
#: admin/core/core.php:529
|
2057 |
msgid "Run Check Every 60 Minutes"
|
2058 |
msgstr ""
|
2059 |
|
2060 |
+
#: admin/core/core.php:530
|
2061 |
msgid "Run Check Once Daily"
|
2062 |
msgstr ""
|
2063 |
|
2064 |
+
#: admin/core/core.php:539
|
2065 |
msgid ""
|
2066 |
"The default Cron Frequency is: Run Check Every 15 Minutes. This is a "
|
2067 |
"lightweight check that uses an insignificant amount of resources/memory so 4 "
|
2073 |
"OK to proceed or click Cancel"
|
2074 |
msgstr ""
|
2075 |
|
2076 |
+
#: admin/core/core.php:543
|
2077 |
msgid "Add Ignore rules using plugin folder names or file names."
|
2078 |
msgstr ""
|
2079 |
|
2080 |
+
#: admin/core/core.php:543
|
2081 |
msgid "Use a comma and a space between folder and/or file names."
|
2082 |
msgstr ""
|
2083 |
|
2084 |
+
#: admin/core/core.php:543
|
2085 |
msgid "Example: plugin-folder-name, example-file-name.php"
|
2086 |
msgstr ""
|
2087 |
|
2088 |
+
#: admin/core/core.php:564
|
2089 |
msgid ""
|
2090 |
"This option is for adding ignore rules for Hidden or Empty Plugin Folders "
|
2091 |
"Detected by BPS or Non-standard WP files detected by BPS in your /plugins/ "
|
2092 |
"folder."
|
2093 |
msgstr ""
|
2094 |
|
2095 |
+
#: admin/core/core.php:564
|
2096 |
msgid ""
|
2097 |
"This is an independent option setting that does not require clicking any "
|
2098 |
"other buttons."
|
2099 |
msgstr ""
|
2100 |
|
2101 |
+
#: admin/core/core.php:564 admin/maintenance/maintenance.php:760
|
2102 |
+
#: admin/security-log/security-log.php:459
|
2103 |
+
#: admin/security-log/security-log.php:475
|
2104 |
+
#: admin/security-log/security-log.php:706
|
2105 |
+
#: admin/system-info/system-info.php:1248
|
2106 |
msgid "Click OK to proceed or click Cancel."
|
2107 |
msgstr ""
|
2108 |
|
2109 |
+
#: admin/core/core.php:582
|
2110 |
msgid "Master htaccess Folder BulletProof Mode (MBM)"
|
2111 |
msgstr ""
|
2112 |
|
2113 |
+
#: admin/core/core.php:585
|
2114 |
msgid "MBM BulletProof Modes"
|
2115 |
msgstr ""
|
2116 |
|
2117 |
+
#: admin/core/core.php:624 admin/core/core.php:627 admin/core/core.php:630
|
2118 |
+
#: admin/core/core.php:638 admin/core/core.php:641 admin/core/core.php:644
|
2119 |
msgid "MBM Status: "
|
2120 |
msgstr ""
|
2121 |
|
2122 |
+
#: admin/core/core.php:659
|
2123 |
msgid "Click OK to Activate MBM BulletProof Mode or click Cancel."
|
2124 |
msgstr ""
|
2125 |
|
2126 |
+
#: admin/core/core.php:667
|
2127 |
msgid "Click OK to Deactivate MBM BulletProof Mode or click Cancel."
|
2128 |
msgstr ""
|
2129 |
|
2130 |
+
#: admin/core/core.php:676
|
2131 |
msgid "BPS Backup Folder BulletProof Mode (BBM)"
|
2132 |
msgstr ""
|
2133 |
|
2134 |
+
#: admin/core/core.php:679
|
2135 |
msgid "BBM BulletProof Modes"
|
2136 |
msgstr ""
|
2137 |
|
2138 |
+
#: admin/core/core.php:718 admin/core/core.php:721 admin/core/core.php:724
|
2139 |
+
#: admin/core/core.php:732 admin/core/core.php:735 admin/core/core.php:738
|
2140 |
msgid "BBM Status: "
|
2141 |
msgstr ""
|
2142 |
|
2143 |
+
#: admin/core/core.php:753
|
2144 |
msgid "Click OK to Activate BBM BulletProof Mode or click Cancel."
|
2145 |
msgstr ""
|
2146 |
|
2147 |
+
#: admin/core/core.php:761
|
2148 |
msgid ""
|
2149 |
"Caution: BPS Backup Folder BulletProof Mode (BBM) should only be deactivated "
|
2150 |
"for testing or troubleshooting. Be sure to activate BBM BulletProof Mode "
|
2151 |
"after you are done testing or troubleshooting."
|
2152 |
msgstr ""
|
2153 |
|
2154 |
+
#: admin/core/core.php:761
|
2155 |
msgid "Click OK to Deactivate BBM BulletProof Mode or click Cancel."
|
2156 |
msgstr ""
|
2157 |
|
2158 |
+
#: admin/core/core.php:770 admin/core/core.php:773
|
2159 |
msgid "Backup & Restore BPS htaccess Files"
|
2160 |
msgstr ""
|
2161 |
|
2162 |
+
#: admin/core/core.php:794
|
2163 |
msgid "Click OK to Backup BPS htaccess files or click Cancel."
|
2164 |
msgstr ""
|
2165 |
|
2166 |
+
#: admin/core/core.php:802
|
2167 |
msgid "Click OK to Restore BPS htaccess files or click Cancel."
|
2168 |
msgstr ""
|
2169 |
|
2170 |
+
#: admin/core/core.php:823 admin/core/core.php:826
|
2171 |
msgid "htaccess File Editing"
|
2172 |
msgstr ""
|
2173 |
|
2174 |
+
#: admin/core/core.php:866
|
2175 |
msgid "htaccess Files Disabled: secure.htaccess Master file is disabled."
|
2176 |
msgstr ""
|
2177 |
|
2178 |
+
#: admin/core/core.php:870
|
2179 |
msgid "ERROR: A secure.htaccess Master file was NOT found."
|
2180 |
msgstr ""
|
2181 |
|
2182 |
+
#: admin/core/core.php:879
|
2183 |
msgid ""
|
2184 |
"File Open and Write test successful! The secure.htaccess Master file is "
|
2185 |
"writable."
|
2186 |
msgstr ""
|
2187 |
|
2188 |
+
#: admin/core/core.php:884 admin/core/core.php:974 admin/core/core.php:1087
|
2189 |
+
#: admin/core/core.php:1276 admin/security-log/security-log.php:771
|
2190 |
msgid "Cannot write to file: "
|
2191 |
msgstr ""
|
2192 |
|
2193 |
+
#: admin/core/core.php:899
|
2194 |
msgid ""
|
2195 |
"htaccess Files Disabled: secure.htaccess Master file writing is disabled. "
|
2196 |
msgstr ""
|
2197 |
|
2198 |
+
#: admin/core/core.php:919
|
2199 |
msgid "Error: Unable to write to the secure.htaccess Master file."
|
2200 |
msgstr ""
|
2201 |
|
2202 |
+
#: admin/core/core.php:934
|
2203 |
msgid "The secure.htaccess Master file has been updated."
|
2204 |
msgstr ""
|
2205 |
|
2206 |
+
#: admin/core/core.php:956
|
2207 |
msgid "htaccess Files Disabled: default.htaccess Master file is disabled."
|
2208 |
msgstr ""
|
2209 |
|
2210 |
+
#: admin/core/core.php:960
|
2211 |
msgid "ERROR: A default.htaccess Master file was NOT found."
|
2212 |
msgstr ""
|
2213 |
|
2214 |
+
#: admin/core/core.php:969
|
2215 |
msgid ""
|
2216 |
"File Open and Write test successful! The default.htaccess Master file is "
|
2217 |
"writable."
|
2218 |
msgstr ""
|
2219 |
|
2220 |
+
#: admin/core/core.php:989
|
2221 |
msgid ""
|
2222 |
"htaccess Files Disabled: default.htaccess Master file writing is disabled. "
|
2223 |
msgstr ""
|
2224 |
|
2225 |
+
#: admin/core/core.php:1009
|
2226 |
msgid "Error: Unable to write to the default.htaccess Master file."
|
2227 |
msgstr ""
|
2228 |
|
2229 |
+
#: admin/core/core.php:1024
|
2230 |
msgid "The default.htaccess Master file has been updated."
|
2231 |
msgstr ""
|
2232 |
|
2233 |
+
#: admin/core/core.php:1036
|
2234 |
msgid ""
|
2235 |
" Check that the /bps-backup/ and /master-backups/ folders exist and the "
|
2236 |
"folder permissions or Ownership for these folders."
|
2237 |
msgstr ""
|
2238 |
|
2239 |
+
#: admin/core/core.php:1041
|
2240 |
msgid ""
|
2241 |
"Your Custom default.htaccess Master file has been successfully saved to: "
|
2242 |
msgstr ""
|
2243 |
|
2244 |
+
#: admin/core/core.php:1063
|
2245 |
msgid "wpadmin-secure.htaccess file writing is disabled."
|
2246 |
msgstr ""
|
2247 |
|
2248 |
+
#: admin/core/core.php:1069
|
2249 |
msgid ""
|
2250 |
"htaccess Files Disabled: wpadmin-secure.htaccess Master file is disabled."
|
2251 |
msgstr ""
|
2252 |
|
2253 |
+
#: admin/core/core.php:1073
|
2254 |
msgid "ERROR: A wpadmin-secure.htaccess Master file was NOT found."
|
2255 |
msgstr ""
|
2256 |
|
2257 |
+
#: admin/core/core.php:1082
|
2258 |
msgid ""
|
2259 |
"File Open and Write test successful! The wpadmin-secure.htaccess Master file "
|
2260 |
"is writable."
|
2261 |
msgstr ""
|
2262 |
|
2263 |
+
#: admin/core/core.php:1103
|
2264 |
msgid ""
|
2265 |
"htaccess Files Disabled: wpadmin-secure.htaccess Master file writing is "
|
2266 |
"disabled. "
|
2267 |
msgstr ""
|
2268 |
|
2269 |
+
#: admin/core/core.php:1123
|
2270 |
msgid "Error: Unable to write to the wpadmin-secure.htaccess Master file."
|
2271 |
msgstr ""
|
2272 |
|
2273 |
+
#: admin/core/core.php:1138
|
2274 |
msgid "The wpadmin-secure.htaccess Master file has been updated."
|
2275 |
msgstr ""
|
2276 |
|
2277 |
+
#: admin/core/core.php:1160
|
2278 |
msgid "htaccess Files Disabled: Root htaccess file does not exist."
|
2279 |
msgstr ""
|
2280 |
|
2281 |
+
#: admin/core/core.php:1164
|
2282 |
msgid "ERROR: An htaccess file was NOT found in your root folder"
|
2283 |
msgstr ""
|
2284 |
|
2285 |
+
#: admin/core/core.php:1173
|
2286 |
msgid ""
|
2287 |
"File Open and Write test successful! Your root htaccess file is writable."
|
2288 |
msgstr ""
|
2289 |
|
2290 |
+
#: admin/core/core.php:1178
|
2291 |
msgid "Your root htaccess file is Locked with Read Only Permissions."
|
2292 |
msgstr ""
|
2293 |
|
2294 |
+
#: admin/core/core.php:1178
|
2295 |
msgid ""
|
2296 |
"Use the Lock and Unlock buttons below to Lock or Unlock your root htaccess "
|
2297 |
"file for editing."
|
2298 |
msgstr ""
|
2299 |
|
2300 |
+
#: admin/core/core.php:1213
|
2301 |
msgid ""
|
2302 |
"Error: Unable to write to the Root htaccess file. If your Root htaccess file "
|
2303 |
"is locked you must unlock first."
|
2304 |
msgstr ""
|
2305 |
|
2306 |
+
#: admin/core/core.php:1228
|
2307 |
msgid "Your root htaccess file has been updated."
|
2308 |
msgstr ""
|
2309 |
|
2310 |
+
#: admin/core/core.php:1252
|
2311 |
msgid "wp-admin active htaccess file writing is disabled."
|
2312 |
msgstr ""
|
2313 |
|
2314 |
+
#: admin/core/core.php:1258
|
2315 |
msgid "htaccess Files Disabled: wp-admin folder htaccess file does not exist."
|
2316 |
msgstr ""
|
2317 |
|
2318 |
+
#: admin/core/core.php:1262
|
2319 |
msgid "ERROR: An htaccess file was NOT found in your wp-admin folder"
|
2320 |
msgstr ""
|
2321 |
|
2322 |
+
#: admin/core/core.php:1271
|
2323 |
msgid ""
|
2324 |
"File Open and Write test successful! Your wp-admin htaccess file is writable."
|
2325 |
msgstr ""
|
2326 |
|
2327 |
+
#: admin/core/core.php:1312
|
2328 |
msgid "Error: Unable to write to the wp-admin htaccess file."
|
2329 |
msgstr ""
|
2330 |
|
2331 |
+
#: admin/core/core.php:1327
|
2332 |
msgid "Your wp-admin htaccess file has been updated."
|
2333 |
msgstr ""
|
2334 |
|
2335 |
+
#: admin/core/core.php:1344
|
2336 |
msgid "Your Root htaccess file has been Locked."
|
2337 |
msgstr ""
|
2338 |
|
2339 |
+
#: admin/core/core.php:1349
|
2340 |
msgid "Unable to Lock your Root htaccess file."
|
2341 |
msgstr ""
|
2342 |
|
2343 |
+
#: admin/core/core.php:1363
|
2344 |
msgid "Your Root htaccess file has been Unlocked."
|
2345 |
msgstr ""
|
2346 |
|
2347 |
+
#: admin/core/core.php:1368
|
2348 |
msgid "Unable to Unlock your Root htaccess file."
|
2349 |
msgstr ""
|
2350 |
|
2351 |
+
#: admin/core/core.php:1391
|
2352 |
msgid "Click OK to Lock your Root htaccess file or click Cancel."
|
2353 |
msgstr ""
|
2354 |
|
2355 |
+
#: admin/core/core.php:1391
|
2356 |
msgid ""
|
2357 |
"Note: The File Open and Write Test window will still display the last status "
|
2358 |
"of the file as Unlocked. To see the current status refresh your browser."
|
2359 |
msgstr ""
|
2360 |
|
2361 |
+
#: admin/core/core.php:1399
|
2362 |
msgid "Click OK to Unlock your Root htaccess file or click Cancel."
|
2363 |
msgstr ""
|
2364 |
|
2365 |
+
#: admin/core/core.php:1399
|
2366 |
msgid ""
|
2367 |
"Note: The File Open and Write Test window will still display the last status "
|
2368 |
"of the file as Locked. To see the current status refresh your browser."
|
2369 |
msgstr ""
|
2370 |
|
2371 |
+
#: admin/core/core.php:1408
|
2372 |
msgid ""
|
2373 |
"Turning AutoLock On will allow BPS Pro to automatically lock your Root ."
|
2374 |
"htaccess file. For some folks this causes a problem because their Web Hosts "
|
2376 |
"BPS Pro to AutoLock the Root .htaccess file works fine."
|
2377 |
msgstr ""
|
2378 |
|
2379 |
+
#: admin/core/core.php:1408
|
2380 |
msgid "Click OK to Turn AutoLock On or click Cancel."
|
2381 |
msgstr ""
|
2382 |
|
2383 |
+
#: admin/core/core.php:1410 admin/system-info/system-info.php:857
|
2384 |
+
#: admin/system-info/system-info.php:873 admin/system-info/system-info.php:881
|
2385 |
+
#: admin/system-info/system-info.php:889 admin/system-info/system-info.php:897
|
2386 |
+
#: admin/system-info/system-info.php:905 admin/system-info/system-info.php:913
|
2387 |
+
#: admin/system-info/system-info.php:921 admin/system-info/system-info.php:929
|
2388 |
+
#: admin/system-info/system-info.php:948 includes/functions.php:566
|
2389 |
#: includes/functions.php:761 includes/functions.php:942
|
2390 |
#: includes/functions.php:989 includes/functions.php:1041
|
2391 |
#: includes/functions.php:1089
|
2392 |
msgid "On"
|
2393 |
msgstr ""
|
2394 |
|
2395 |
+
#: admin/core/core.php:1420
|
2396 |
msgid ""
|
2397 |
"Turning AutoLock Off will prevent BPS Pro from automatically locking your "
|
2398 |
"Root .htaccess file. For some folks this is necessary because their Web "
|
2400 |
"allowing BPS Pro to AutoLock the Root .htaccess file works fine."
|
2401 |
msgstr ""
|
2402 |
|
2403 |
+
#: admin/core/core.php:1420
|
2404 |
msgid "Click OK to Turn AutoLock Off or click Cancel."
|
2405 |
msgstr ""
|
2406 |
|
2407 |
+
#: admin/core/core.php:1422 admin/system-info/system-info.php:580
|
2408 |
+
#: admin/system-info/system-info.php:876 admin/system-info/system-info.php:884
|
2409 |
+
#: admin/system-info/system-info.php:892 admin/system-info/system-info.php:900
|
2410 |
+
#: admin/system-info/system-info.php:908 admin/system-info/system-info.php:916
|
2411 |
+
#: admin/system-info/system-info.php:924 admin/system-info/system-info.php:932
|
2412 |
+
#: admin/system-info/system-info.php:940 admin/system-info/system-info.php:951
|
2413 |
#: includes/functions.php:947 includes/functions.php:994
|
2414 |
#: includes/functions.php:1047 includes/functions.php:1095
|
2415 |
#: includes/general-functions.php:285 includes/general-functions.php:300
|
2416 |
msgid "Off"
|
2417 |
msgstr ""
|
2418 |
|
2419 |
+
#: admin/core/core.php:1437
|
2420 |
msgid "secure.htaccess"
|
2421 |
msgstr ""
|
2422 |
|
2423 |
+
#: admin/core/core.php:1438
|
2424 |
msgid "default.htaccess"
|
2425 |
msgstr ""
|
2426 |
|
2427 |
+
#: admin/core/core.php:1439
|
2428 |
msgid "wpadmin-secure.htaccess"
|
2429 |
msgstr ""
|
2430 |
|
2431 |
+
#: admin/core/core.php:1440
|
2432 |
msgid "Root htaccess File"
|
2433 |
msgstr ""
|
2434 |
|
2435 |
+
#: admin/core/core.php:1441
|
2436 |
msgid "wp-admin htaccess File"
|
2437 |
msgstr ""
|
2438 |
|
2439 |
+
#: admin/core/core.php:1465 admin/core/core.php:1539 admin/core/core.php:1613
|
2440 |
+
#: admin/core/core.php:1718 admin/core/core.php:1794
|
2441 |
msgid ""
|
2442 |
"If you see an error or are unable to save your editing changes then click "
|
2443 |
"the Encrypt htaccess Code button first and then click the Update File "
|
2444 |
"button. Mouse over the question mark image to the right for help info."
|
2445 |
msgstr ""
|
2446 |
|
2447 |
+
#: admin/core/core.php:1465 admin/core/core.php:1539 admin/core/core.php:1613
|
2448 |
+
#: admin/core/core.php:1718 admin/core/core.php:1794
|
2449 |
msgid ""
|
2450 |
"If your web host currently has ModSecurity installed or installs ModSecurity "
|
2451 |
"at a later time then ModSecurity will prevent you from saving your htaccess "
|
2453 |
"button."
|
2454 |
msgstr ""
|
2455 |
|
2456 |
+
#: admin/core/core.php:1465 admin/core/core.php:1539 admin/core/core.php:1613
|
2457 |
+
#: admin/core/core.php:1718 admin/core/core.php:1794
|
2458 |
msgid ""
|
2459 |
"If you click the Encrypt htaccess Code button and then want to edit your "
|
2460 |
"code again click the Decrypt htaccess Code button. After you are done "
|
2462 |
"File button."
|
2463 |
msgstr ""
|
2464 |
|
2465 |
+
#: admin/core/core.php:1465 admin/core/core.php:1539 admin/core/core.php:1613
|
2466 |
+
#: admin/core/core.php:1718 admin/core/core.php:1794
|
2467 |
msgid ""
|
2468 |
"Click the htaccess File Editing Question Mark help button for more help info."
|
2469 |
msgstr ""
|
2470 |
|
2471 |
+
#: admin/core/core.php:1714
|
2472 |
msgid "YOUR ROOT HTACCESS FILE IS LOCKED."
|
2473 |
msgstr ""
|
2474 |
|
2475 |
+
#: admin/core/core.php:1714
|
2476 |
msgid "YOUR FILE EDITS|CHANGES CANNOT BE SAVED."
|
2477 |
msgstr ""
|
2478 |
|
2479 |
+
#: admin/core/core.php:1714
|
2480 |
msgid ""
|
2481 |
"Click Cancel, copy the file editing changes you made to save them and then "
|
2482 |
"click the Unlock .htaccess File button to unlock your Root .htaccess file. "
|
2485 |
"to save your file edits/changes."
|
2486 |
msgstr ""
|
2487 |
|
2488 |
+
#: admin/core/core.php:1891 admin/core/core.php:2141
|
2489 |
+
#: admin/wizard/wizard.php:1108
|
2490 |
msgid "Custom Code Video Tutorial"
|
2491 |
msgstr ""
|
2492 |
|
2493 |
+
#: admin/core/core.php:1893
|
2494 |
msgid "BulletProof Security Pro Forum"
|
2495 |
msgstr ""
|
2496 |
|
2497 |
+
#: admin/core/core.php:1895
|
2498 |
msgid "Brute Force Login Page Protection code"
|
2499 |
msgstr ""
|
2500 |
|
2501 |
+
#: admin/core/core.php:1919
|
2502 |
msgid ""
|
2503 |
"Clicking OK will Import all of your Root and wp-admin Custom Code from the "
|
2504 |
"cc-master.zip file on your computer."
|
2505 |
msgstr ""
|
2506 |
|
2507 |
+
#: admin/core/core.php:1919
|
2508 |
msgid "Click OK to Import Custom Code or click Cancel."
|
2509 |
msgstr ""
|
2510 |
|
2511 |
+
#: admin/core/core.php:1928
|
2512 |
msgid ""
|
2513 |
"Clicking OK will Export (copy) all of your Root and wp-admin Custom Code "
|
2514 |
"into the cc-master.zip file, which you can then download to your computer by "
|
2516 |
"success message."
|
2517 |
msgstr ""
|
2518 |
|
2519 |
+
#: admin/core/core.php:1928
|
2520 |
msgid "Click OK to Export Custom Code or click Cancel."
|
2521 |
msgstr ""
|
2522 |
|
2523 |
+
#: admin/core/core.php:1936
|
2524 |
msgid ""
|
2525 |
"Clicking OK will delete all of your Root and wp-admin Custom Code from all "
|
2526 |
"of the Custom Code text boxes."
|
2527 |
msgstr ""
|
2528 |
|
2529 |
+
#: admin/core/core.php:1936
|
2530 |
msgid "Click OK to Delete Custom Code or click Cancel."
|
2531 |
msgstr ""
|
2532 |
|
2533 |
+
#: admin/core/core.php:1962
|
2534 |
msgid "Save Personal Notes and htaccess Code Notes to your WordPress Database"
|
2535 |
msgstr ""
|
2536 |
|
2537 |
+
#: admin/core/core.php:1990
|
2538 |
msgid ""
|
2539 |
"Your My Notes Personal Notes and/or htaccess Code Notes saved successfully "
|
2540 |
"to your WordPress Database."
|
2541 |
msgstr ""
|
2542 |
|
2543 |
+
#: admin/core/core.php:2018
|
2544 |
msgid ""
|
2545 |
"If you are unable to save custom htaccess code and/or see an error message "
|
2546 |
"when trying to save custom htaccess code, "
|
2547 |
msgstr ""
|
2548 |
|
2549 |
+
#: admin/core/core.php:2018
|
2550 |
msgid ""
|
2551 |
"click the Encrypt My Notes button first and then click the Save My Notes "
|
2552 |
"button."
|
2553 |
msgstr ""
|
2554 |
|
2555 |
+
#: admin/core/core.php:2018
|
2556 |
msgid "Mouse over the question mark image to the right for help info."
|
2557 |
msgstr ""
|
2558 |
|
2559 |
+
#: admin/core/core.php:2018
|
2560 |
msgid ""
|
2561 |
"If your web host currently has ModSecurity installed or installs ModSecurity "
|
2562 |
"at a later time then ModSecurity will prevent you from saving your custom "
|
2564 |
"button."
|
2565 |
msgstr ""
|
2566 |
|
2567 |
+
#: admin/core/core.php:2018
|
2568 |
msgid ""
|
2569 |
"If you click the Encrypt My Notes button, but then want to add or edit "
|
2570 |
"additional custom code click the Decrypt My Notes button. After you are done "
|
2572 |
"clicking the Save My Notes button."
|
2573 |
msgstr ""
|
2574 |
|
2575 |
+
#: admin/core/core.php:2088
|
2576 |
+
#: admin/db-backup-security/db-backup-security.php:1796
|
2577 |
+
#: admin/mscan/mscan.php:3691 admin/theme-skin/theme-skin.php:234
|
2578 |
msgid "Whats New in "
|
2579 |
msgstr ""
|
2580 |
|
2581 |
+
#: admin/core/core.php:2088
|
2582 |
msgid " and General Help Info & Tips"
|
2583 |
msgstr ""
|
2584 |
|
2585 |
+
#: admin/core/core.php:2094
|
2586 |
msgid "The BPS Changelog|Whats New page has been moved to the "
|
2587 |
msgstr ""
|
2588 |
|
2589 |
+
#: admin/core/core.php:2110
|
2590 |
msgid "General Help Info & Tips:"
|
2591 |
msgstr ""
|
2592 |
|
2593 |
+
#: admin/core/core.php:2116
|
2594 |
msgid "BPS Video Tutorials|Setup Wizard: "
|
2595 |
msgstr ""
|
2596 |
|
2597 |
+
#: admin/core/core.php:2116
|
2598 |
msgid "BPS Pro Video Tutorials"
|
2599 |
msgstr ""
|
2600 |
|
2601 |
+
#: admin/core/core.php:2122
|
2602 |
msgid ""
|
2603 |
"BPS Setup Wizard AutoFix automatically creates whitelist rules for 100+ "
|
2604 |
"known issues with plugins and themes: "
|
2605 |
msgstr ""
|
2606 |
|
2607 |
+
#: admin/core/core.php:2122
|
2608 |
msgid ""
|
2609 |
"All BPS plugin features can be turned Off/On individually to confirm, "
|
2610 |
"eliminate or isolate a problem or issue that may or may not be caused by "
|
2611 |
"BPS: "
|
2612 |
msgstr ""
|
2613 |
|
2614 |
+
#: admin/core/core.php:2122
|
2615 |
msgid ""
|
2616 |
"The BPS Security Log is a primary troubleshooting tool. If BPS is blocking "
|
2617 |
"something legitimate in another plugin or theme then a Security Log entry "
|
2620 |
"being blocked: "
|
2621 |
msgstr ""
|
2622 |
|
2623 |
+
#: admin/core/core.php:2122
|
2624 |
msgid "BPS Security Forum: "
|
2625 |
msgstr ""
|
2626 |
|
2627 |
+
#: admin/core/core.php:2139 admin/email-log-settings/email-log-settings.php:441
|
2628 |
+
#: admin/login/login.php:2046 admin/maintenance/maintenance.php:2242
|
2629 |
+
#: admin/security-log/security-log.php:847
|
2630 |
+
#: admin/system-info/system-info.php:1270
|
2631 |
msgid "Security Log Event Codes"
|
2632 |
msgstr ""
|
2633 |
|
2634 |
+
#: admin/core/core.php:2140
|
2635 |
+
#: admin/db-backup-security/db-backup-security.php:1800
|
2636 |
+
#: admin/email-log-settings/email-log-settings.php:442
|
2637 |
+
#: admin/login/login.php:2047 admin/maintenance/maintenance.php:2243
|
2638 |
+
#: admin/mscan/mscan.php:3694 admin/security-log/security-log.php:848
|
2639 |
+
#: admin/system-info/system-info.php:1271 admin/theme-skin/theme-skin.php:237
|
2640 |
msgid "Forum: Search, Troubleshooting Steps & Post Questions For Assistance"
|
2641 |
msgstr ""
|
2642 |
|
2643 |
+
#: admin/core/core.php:2156
|
2644 |
msgid "BulletProof Security Pro Feature Highlights"
|
2645 |
msgstr ""
|
2646 |
|
2647 |
+
#: admin/core/core.php:2166
|
2648 |
msgid "The Ultimate Security Protection"
|
2649 |
msgstr ""
|
2650 |
|
2651 |
+
#: admin/core/core.php:2169
|
2652 |
msgid "BPS Pro One-Click Setup Wizard & Demo Video Tutorial"
|
2653 |
msgstr ""
|
2654 |
|
2655 |
+
#: admin/core/core.php:2170
|
2656 |
msgid "View All BPS Pro Features"
|
2657 |
msgstr ""
|
2658 |
|
2659 |
+
#: admin/core/core.php:2181
|
2660 |
msgid ""
|
2661 |
"The Complete Website Security Solution for Hacker and Spammer Protection"
|
2662 |
msgstr ""
|
2663 |
|
2664 |
+
#: admin/core/core.php:2181
|
2665 |
msgid ""
|
2666 |
"BulletProof Security Pro has an amazing track record. BPS Pro has been "
|
2667 |
"publicly available for 10+ years and is installed on over 60,000 websites "
|
2669 |
"hacked."
|
2670 |
msgstr ""
|
2671 |
|
2672 |
+
#: admin/core/core.php:2181
|
2673 |
msgid ""
|
2674 |
"Why pay 10 times or more for other premium WordPress Security Plugins with "
|
2675 |
"recurring yearly subscriptions when you can get the best WordPress Security "
|
2676 |
"Plugin for an extremely low one-time purchase price?"
|
2677 |
msgstr ""
|
2678 |
|
2679 |
+
#: admin/core/core.php:2181
|
2680 |
msgid "View Cost Comparison"
|
2681 |
msgstr ""
|
2682 |
|
2683 |
+
#: admin/core/core.php:2181
|
2684 |
msgid ""
|
2685 |
"30-Day Money-Back Guarantee: If you are dissatisfied with BulletProof "
|
2686 |
"Security Pro for any reason. We offer a no questions asked full refund."
|
2687 |
msgstr ""
|
2688 |
|
2689 |
+
#: admin/core/core.php:2184
|
2690 |
msgid "One-Click Setup Wizard Installation: "
|
2691 |
msgstr ""
|
2692 |
|
2693 |
+
#: admin/core/core.php:2184
|
2694 |
msgid ""
|
2695 |
"Fast, simple and complete BPS Pro installation and setup in less than 1 "
|
2696 |
"minute."
|
2697 |
msgstr ""
|
2698 |
|
2699 |
+
#: admin/core/core.php:2186
|
2700 |
msgid "One-Click Upgrade: "
|
2701 |
msgstr ""
|
2702 |
|
2703 |
+
#: admin/core/core.php:2186
|
2704 |
msgid "One-click plugin upgrade on the WordPress Plugins page."
|
2705 |
msgstr ""
|
2706 |
|
2707 |
+
#: admin/core/core.php:2188
|
2708 |
msgid ""
|
2709 |
"AutoRestore|Quarantine Intrusion Detection and Prevention System (ARQ IDPS): "
|
2710 |
msgstr ""
|
2711 |
|
2712 |
+
#: admin/core/core.php:2188
|
2713 |
msgid ""
|
2714 |
"ARQ IDPS is a real-time file scanner that automatically quarantines "
|
2715 |
"malicious hacker files and autorestores legitimate website files if they "
|
2723 |
"Plugin and Theme Automatic, Manual and Shiny installations and updates."
|
2724 |
msgstr ""
|
2725 |
|
2726 |
+
#: admin/core/core.php:2190
|
2727 |
msgid "MScan Malware Scanner: "
|
2728 |
msgstr ""
|
2729 |
|
2730 |
+
#: admin/core/core.php:2190
|
2731 |
msgid ""
|
2732 |
"MScan Scheduled Scans are available in BPS Pro only. The BPS Pro ARQ IDPS "
|
2733 |
"scanner is far superior to malware scanners including MScan, but both the "
|
2735 |
"website if someone would like to do that."
|
2736 |
msgstr ""
|
2737 |
|
2738 |
+
#: admin/core/core.php:2192
|
2739 |
msgid "Plugin Firewall|Plugin Firewall AutoPilot Mode: "
|
2740 |
msgstr ""
|
2741 |
|
2742 |
+
#: admin/core/core.php:2192
|
2743 |
msgid ""
|
2744 |
"The Plugin Firewall protects all of your Plugins (plugin folders and files) "
|
2745 |
"with an IP Address Firewall, which prevents/blocks/forbids Remote Access to "
|
2753 |
"firewall whitelist rules."
|
2754 |
msgstr ""
|
2755 |
|
2756 |
+
#: admin/core/core.php:2194
|
2757 |
msgid "JTC Anti-Spam|Anti-Hacker (JTC): "
|
2758 |
msgstr ""
|
2759 |
|
2760 |
+
#: admin/core/core.php:2194
|
2761 |
#, php-format
|
2762 |
msgid ""
|
2763 |
"Blocks 100% of all SpamBot and HackerBot Brute Force Login attacks (auto-"
|
2771 |
"includes a SpamBot Trap."
|
2772 |
msgstr ""
|
2773 |
|
2774 |
+
#: admin/core/core.php:2196
|
2775 |
msgid "Uploads Folder Anti-Exploit Guard (UAEG): "
|
2776 |
msgstr ""
|
2777 |
|
2778 |
+
#: admin/core/core.php:2196
|
2779 |
msgid ""
|
2780 |
"Protects the WordPress Uploads folder. ONLY safe image files with valid "
|
2781 |
"image file extensions such as jpg, gif, png, etc. can be accessed, opened or "
|
2785 |
"executed in the WordPress Uploads folder."
|
2786 |
msgstr ""
|
2787 |
|
2788 |
+
#: admin/core/core.php:2198
|
2789 |
msgid "DB Monitor Intrusion Detection System (IDS): "
|
2790 |
msgstr ""
|
2791 |
|
2792 |
+
#: admin/core/core.php:2198
|
2793 |
msgid ""
|
2794 |
"The DB Monitor is an automated Intrusion Detection System (IDS) that alerts "
|
2795 |
"you via email anytime a change/modification occurs in your WordPress "
|
2800 |
"help info."
|
2801 |
msgstr ""
|
2802 |
|
2803 |
+
#: admin/core/core.php:2200
|
2804 |
msgid "DB Diff Tool: "
|
2805 |
msgstr ""
|
2806 |
|
2807 |
+
#: admin/core/core.php:2200
|
2808 |
msgid ""
|
2809 |
"The DB Diff Tool compares old database tables from DB backups to current "
|
2810 |
"database tables and displays any differences in the data/content of those 2 "
|
2812 |
"not only just DB data."
|
2813 |
msgstr ""
|
2814 |
|
2815 |
+
#: admin/core/core.php:2202
|
2816 |
msgid "DB Status & Info: "
|
2817 |
msgstr ""
|
2818 |
|
2819 |
+
#: admin/core/core.php:2202
|
2820 |
msgid ""
|
2821 |
"General DB Info shows commonly checked DB status and info about your "
|
2822 |
"WordPress database at a glance. Extensive DB Info shows extensive DB status "
|
2825 |
"SHOW GLOBAL VARIABLES and SHOW SESSION VARIABLES."
|
2826 |
msgstr ""
|
2827 |
|
2828 |
+
#: admin/core/core.php:2204
|
2829 |
msgid "Display & Alert Options: "
|
2830 |
msgstr ""
|
2831 |
|
2832 |
+
#: admin/core/core.php:2204
|
2833 |
msgid ""
|
2834 |
"Centralized Display & Alert Options where you can manage and choose BPS Pro "
|
2835 |
"settings for Dashboard Alerts, Dashboard Status Display|Inpage Status "
|
2839 |
"settings to your particular preferences."
|
2840 |
msgstr ""
|
2841 |
|
2842 |
+
#: admin/core/core.php:2206
|
2843 |
msgid "Advanced Real-Time Alerting & Heads Up Dashboard Status Display: "
|
2844 |
msgstr ""
|
2845 |
|
2846 |
+
#: admin/core/core.php:2206
|
2847 |
msgid ""
|
2848 |
"BPS Pro checks and displays error, warning, notifications and alert messages "
|
2849 |
"in real time. You can choose how you want these messages displayed to you "
|
2851 |
"Dashboard, BPS Pro pages only, Turned off, Email Alerts, Logging..."
|
2852 |
msgstr ""
|
2853 |
|
2854 |
+
#: admin/core/core.php:2209
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2855 |
msgid "Pro Tools: 16 mini-plugins: "
|
2856 |
msgstr ""
|
2857 |
|
2858 |
+
#: admin/core/core.php:2209
|
2859 |
msgid ""
|
2860 |
"Online Base64 Decoder, Offline Base64 Decode|Encode, Mcrypt ~ Decrypt|"
|
2861 |
"Encrypt, Crypt Encryption, Scheduled Crons (display and reschedule/reset "
|
2869 |
"cURL Scan (scan website Source Code for strings/text/code), Website Headers "
|
2870 |
"(check and display Headers using GET or HEAD Requests), WP Automatic Update "
|
2871 |
"(Turn WP Automatic Updates On or Off and other settings), Plugin Update "
|
2872 |
+
"Check (force new Plugin update check), BPS Pro Plugin auto-update (Custom "
|
2873 |
+
"BPS Pro plugin auto-update options), XML-RPC Exploit Checker (check your "
|
2874 |
"website or a remote website to see if the website is protected against or "
|
2875 |
"vulnerable to an XML-RPC exploit)."
|
2876 |
msgstr ""
|
2877 |
|
2878 |
+
#: admin/core/core.php:2218
|
2879 |
msgid "BPS Pro Version Release Dates"
|
2880 |
msgstr ""
|
2881 |
|
2882 |
+
#: admin/core/core.php:2223 admin/core/core.php:2224 admin/core/core.php:2225
|
2883 |
+
#: admin/core/core.php:2226 admin/core/core.php:2227 admin/core/core.php:2228
|
2884 |
+
#: admin/core/core.php:2229 admin/core/core.php:2230 admin/core/core.php:2236
|
2885 |
+
#: admin/core/core.php:2237 admin/core/core.php:2238 admin/core/core.php:2239
|
2886 |
+
#: admin/core/core.php:2240 admin/core/core.php:2241 admin/core/core.php:2242
|
2887 |
+
#: admin/core/core.php:2243 admin/core/core.php:2244 admin/core/core.php:2245
|
2888 |
+
#: admin/core/core.php:2251 admin/core/core.php:2252 admin/core/core.php:2253
|
2889 |
+
#: admin/core/core.php:2254 admin/core/core.php:2255 admin/core/core.php:2256
|
2890 |
+
#: admin/core/core.php:2262 admin/core/core.php:2263 admin/core/core.php:2264
|
2891 |
+
#: admin/core/core.php:2265 admin/core/core.php:2270 admin/core/core.php:2271
|
2892 |
+
#: admin/core/core.php:2272 admin/core/core.php:2273 admin/core/core.php:2274
|
2893 |
+
#: admin/core/core.php:2279 admin/core/core.php:2280 admin/core/core.php:2281
|
2894 |
+
#: admin/core/core.php:2282 admin/core/core.php:2283 admin/core/core.php:2284
|
2895 |
+
#: admin/core/core.php:2285 admin/core/core.php:2286 admin/core/core.php:2287
|
|
|
|
|
2896 |
#: admin/core/core.php:2292 admin/core/core.php:2293 admin/core/core.php:2294
|
2897 |
+
#: admin/core/core.php:2295 admin/core/core.php:2296 admin/core/core.php:2297
|
2898 |
+
#: admin/core/core.php:2298 admin/core/core.php:2299 admin/core/core.php:2300
|
2899 |
+
#: admin/core/core.php:2301 admin/core/core.php:2302 admin/core/core.php:2303
|
2900 |
+
#: admin/core/core.php:2304 admin/core/core.php:2310 admin/core/core.php:2311
|
2901 |
#: admin/core/core.php:2312 admin/core/core.php:2313 admin/core/core.php:2314
|
2902 |
+
#: admin/core/core.php:2315 admin/core/core.php:2316 admin/core/core.php:2317
|
2903 |
+
#: admin/core/core.php:2318 admin/core/core.php:2319 admin/core/core.php:2320
|
2904 |
+
#: admin/core/core.php:2321 admin/core/core.php:2322 admin/core/core.php:2323
|
2905 |
#: admin/core/core.php:2329 admin/core/core.php:2330 admin/core/core.php:2331
|
2906 |
+
#: admin/core/core.php:2332 admin/core/core.php:2333 admin/core/core.php:2334
|
2907 |
+
#: admin/core/core.php:2335 admin/core/core.php:2336 admin/core/core.php:2337
|
2908 |
+
#: admin/core/core.php:2338 admin/core/core.php:2339 admin/core/core.php:2340
|
2909 |
+
#: admin/core/core.php:2341 admin/core/core.php:2347 admin/core/core.php:2348
|
2910 |
+
#: admin/core/core.php:2349 admin/core/core.php:2350 admin/core/core.php:2351
|
2911 |
+
#: admin/core/core.php:2352 admin/core/core.php:2353 admin/core/core.php:2354
|
2912 |
+
#: admin/core/core.php:2355 admin/core/core.php:2356 admin/core/core.php:2362
|
2913 |
+
#: admin/core/core.php:2363 admin/core/core.php:2364 admin/core/core.php:2365
|
2914 |
+
#: admin/core/core.php:2366 admin/core/core.php:2367 admin/core/core.php:2368
|
2915 |
+
#: admin/core/core.php:2369 admin/core/core.php:2370 admin/core/core.php:2371
|
2916 |
#, php-format
|
2917 |
msgid ""
|
2918 |
"<a href=\"%2$s\" target=\"_blank\" title=\"Link Opens in New Browser Window"
|
2919 |
"\">Whats New in BPS Pro %1$s</a>"
|
2920 |
msgstr ""
|
2921 |
|
2922 |
+
#: admin/core/core.php:2233
|
2923 |
#, php-format
|
2924 |
msgid "10 Year Milestone: 8-1-2021 | %1$s"
|
2925 |
msgstr ""
|
2926 |
|
2927 |
+
#: admin/core/core.php:2248
|
2928 |
#, php-format
|
2929 |
msgid "9 Year Milestone: 8-1-2020 | %1$s"
|
2930 |
msgstr ""
|
2931 |
|
2932 |
+
#: admin/core/core.php:2259
|
2933 |
#, php-format
|
2934 |
msgid "8 Year Milestone: 8-1-2019 | %1$s"
|
2935 |
msgstr ""
|
2936 |
|
2937 |
+
#: admin/core/core.php:2267
|
2938 |
#, php-format
|
2939 |
msgid "7 Year Milestone: 8-1-2018 | %1$s"
|
2940 |
msgstr ""
|
2941 |
|
2942 |
+
#: admin/core/core.php:2276
|
2943 |
#, php-format
|
2944 |
msgid "6 Year Milestone: 8-1-2017 | %1$s"
|
2945 |
msgstr ""
|
2946 |
|
2947 |
+
#: admin/core/core.php:2289
|
2948 |
#, php-format
|
2949 |
msgid "5 Year Milestone: 8-1-2016 | %1$s"
|
2950 |
msgstr ""
|
2951 |
|
2952 |
+
#: admin/core/core.php:2307
|
2953 |
#, php-format
|
2954 |
msgid "4 Year Milestone: 8-1-2015 | %1$s"
|
2955 |
msgstr ""
|
2956 |
|
2957 |
+
#: admin/core/core.php:2326
|
2958 |
#, php-format
|
2959 |
msgid "3 Year Milestone: 8-1-2014 | %1$s"
|
2960 |
msgstr ""
|
2961 |
|
2962 |
+
#: admin/core/core.php:2344
|
2963 |
#, php-format
|
2964 |
msgid "2 Year Milestone: 8-1-2013 | %1$s"
|
2965 |
msgstr ""
|
2966 |
|
2967 |
+
#: admin/core/core.php:2359
|
2968 |
#, php-format
|
2969 |
msgid "1 Year Milestone: 8-1-2012 | %1$s"
|
2970 |
msgstr ""
|
2971 |
|
2972 |
+
#: admin/core/core.php:2374
|
2973 |
msgid "BPS Pro 1.0 - 4.0 | 1-1-2011 - 8-1-2011 | Private Use|Development"
|
2974 |
msgstr ""
|
2975 |
|
3043 |
msgstr ""
|
3044 |
|
3045 |
#: admin/db-backup-security/db-backup-help-text.php:9
|
3046 |
+
#: admin/login/lsm-help-text.php:10 admin/security-log/security-log.php:235
|
3047 |
msgid "NOTE: "
|
3048 |
msgstr ""
|
3049 |
|
3261 |
msgstr ""
|
3262 |
|
3263 |
#: admin/db-backup-security/db-backup-help-text.php:9
|
3264 |
+
#: admin/db-backup-security/db-backup-security.php:999
|
3265 |
msgid "Rename|Create|Reset Tool"
|
3266 |
msgstr ""
|
3267 |
|
3447 |
msgstr ""
|
3448 |
|
3449 |
#: admin/db-backup-security/db-backup-help-text.php:12
|
3450 |
+
#: admin/email-log-settings/email-log-settings.php:288
|
3451 |
#: admin/login/lsm-help-text.php:10 admin/login/lsm-help-text.php:19
|
3452 |
+
#: admin/security-log/security-log.php:235
|
3453 |
msgid "Note: "
|
3454 |
msgstr ""
|
3455 |
|
3496 |
msgstr ""
|
3497 |
|
3498 |
#: admin/db-backup-security/db-backup-help-text.php:12
|
3499 |
+
#: admin/mscan/mscan-help-text.php:75 admin/security-log/security-log.php:235
|
3500 |
msgid "Delete Log Button"
|
3501 |
msgstr ""
|
3502 |
|
3633 |
msgstr ""
|
3634 |
|
3635 |
#: admin/db-backup-security/db-backup-security.php:267
|
3636 |
+
#: admin/db-backup-security/db-backup-security.php:1262
|
3637 |
+
#: admin/db-backup-security/db-backup-security.php:1265
|
3638 |
msgid "DB Backup Log"
|
3639 |
msgstr ""
|
3640 |
|
3641 |
#: admin/db-backup-security/db-backup-security.php:268
|
3642 |
+
#: admin/db-backup-security/db-backup-security.php:1440
|
3643 |
+
#: admin/db-backup-security/db-backup-security.php:1443
|
3644 |
msgid "DB Table Prefix Changer"
|
3645 |
msgstr ""
|
3646 |
|
3647 |
+
#: admin/db-backup-security/db-backup-security.php:298
|
3648 |
msgid "DB Backup & Security Guide"
|
3649 |
msgstr ""
|
3650 |
|
3651 |
+
#: admin/db-backup-security/db-backup-security.php:305
|
3652 |
msgid "Backup Jobs ~ Manual|Scheduled"
|
3653 |
msgstr ""
|
3654 |
|
3655 |
+
#: admin/db-backup-security/db-backup-security.php:426
|
3656 |
msgid ""
|
3657 |
"Error: You did not select any DB Tables to backup. Backup Job was not "
|
3658 |
"created."
|
3659 |
msgstr ""
|
3660 |
|
3661 |
+
#: admin/db-backup-security/db-backup-security.php:535
|
3662 |
msgid "Backup Job "
|
3663 |
msgstr ""
|
3664 |
|
3665 |
+
#: admin/db-backup-security/db-backup-security.php:535
|
3666 |
msgid " Created Successfully."
|
3667 |
msgstr ""
|
3668 |
|
3669 |
+
#: admin/db-backup-security/db-backup-security.php:537
|
3670 |
msgid "Backup Job Settings Logged successfully in the DB Backup Log"
|
3671 |
msgstr ""
|
3672 |
|
3673 |
+
#: admin/db-backup-security/db-backup-security.php:569
|
3674 |
msgid "Run Job|Delete Job"
|
3675 |
msgstr ""
|
3676 |
|
3677 |
+
#: admin/db-backup-security/db-backup-security.php:625
|
3678 |
+
#: admin/db-backup-security/db-backup-security.php:680
|
3679 |
msgid "Backup Job: "
|
3680 |
msgstr ""
|
3681 |
|
3682 |
+
#: admin/db-backup-security/db-backup-security.php:625
|
3683 |
+
#: admin/db-backup-security/db-backup-security.php:861
|
3684 |
msgid " has been deleted successfully."
|
3685 |
msgstr ""
|
3686 |
|
3687 |
+
#: admin/db-backup-security/db-backup-security.php:680
|
3688 |
msgid " has completed."
|
3689 |
msgstr ""
|
3690 |
|
3691 |
+
#: admin/db-backup-security/db-backup-security.php:680
|
3692 |
msgid ""
|
3693 |
"Your DB Backup Log contains the Backup Job Completion Time, Total Memory "
|
3694 |
"Used and other information about this Backup."
|
3695 |
msgstr ""
|
3696 |
|
3697 |
+
#: admin/db-backup-security/db-backup-security.php:709
|
3698 |
msgid "Description|Job Name"
|
3699 |
msgstr ""
|
3700 |
|
3701 |
+
#: admin/db-backup-security/db-backup-security.php:710
|
3702 |
+
#: admin/db-backup-security/db-backup-security.php:740
|
3703 |
+
#: admin/db-backup-security/db-backup-security.php:899
|
3704 |
+
#: admin/db-backup-security/db-backup-security.php:917
|
3705 |
+
#: admin/login/login.php:576 admin/login/login.php:605
|
3706 |
+
#: admin/login/login.php:677 admin/login/login.php:706
|
3707 |
+
#: admin/mscan/mscan.php:1767 admin/mscan/mscan.php:3207
|
3708 |
msgid "Delete"
|
3709 |
msgstr ""
|
3710 |
|
3711 |
+
#: admin/db-backup-security/db-backup-security.php:711
|
3712 |
+
#: admin/db-backup-security/db-backup-security.php:741
|
3713 |
msgid "Run"
|
3714 |
msgstr ""
|
3715 |
|
3716 |
+
#: admin/db-backup-security/db-backup-security.php:712
|
3717 |
msgid "Job Type"
|
3718 |
msgstr ""
|
3719 |
|
3720 |
+
#: admin/db-backup-security/db-backup-security.php:713
|
3721 |
msgid "Frequency"
|
3722 |
msgstr ""
|
3723 |
|
3724 |
+
#: admin/db-backup-security/db-backup-security.php:714
|
3725 |
msgid "Last Backup"
|
3726 |
msgstr ""
|
3727 |
|
3728 |
+
#: admin/db-backup-security/db-backup-security.php:715
|
3729 |
msgid "Next Backup"
|
3730 |
msgstr ""
|
3731 |
|
3732 |
+
#: admin/db-backup-security/db-backup-security.php:716
|
3733 |
msgid "Email Backup"
|
3734 |
msgstr ""
|
3735 |
|
3736 |
+
#: admin/db-backup-security/db-backup-security.php:717
|
3737 |
msgid "Job Created"
|
3738 |
msgstr ""
|
3739 |
|
3740 |
+
#: admin/db-backup-security/db-backup-security.php:724
|
3741 |
msgid "No Backup Jobs have been created yet."
|
3742 |
msgstr ""
|
3743 |
|
3744 |
+
#: admin/db-backup-security/db-backup-security.php:759
|
3745 |
msgid "Yes & Delete"
|
3746 |
msgstr ""
|
3747 |
|
3748 |
+
#: admin/db-backup-security/db-backup-security.php:761
|
3749 |
msgid "Send Email Only"
|
3750 |
msgstr ""
|
3751 |
|
3752 |
+
#: admin/db-backup-security/db-backup-security.php:797
|
3753 |
msgid "Backup Files ~ Download|Delete"
|
3754 |
msgstr ""
|
3755 |
|
3756 |
+
#: admin/db-backup-security/db-backup-security.php:839
|
3757 |
msgid "Delete Files"
|
3758 |
msgstr ""
|
3759 |
|
3760 |
+
#: admin/db-backup-security/db-backup-security.php:861
|
3761 |
msgid "Backup File: "
|
3762 |
msgstr ""
|
3763 |
|
3764 |
+
#: admin/db-backup-security/db-backup-security.php:882
|
3765 |
msgid ""
|
3766 |
"Error: The DB Backup Folder Location option setting is either blank or "
|
3767 |
"incorrect."
|
3768 |
msgstr ""
|
3769 |
|
3770 |
+
#: admin/db-backup-security/db-backup-security.php:882
|
3771 |
msgid ""
|
3772 |
"To fix this problem either click the Rename|Create|Reset button under the "
|
3773 |
"Create Backup Jobs accordion tab or run the BPS Setup Wizard again."
|
3774 |
msgstr ""
|
3775 |
|
3776 |
+
#: admin/db-backup-security/db-backup-security.php:898
|
3777 |
msgid "Backup Filename"
|
3778 |
msgstr ""
|
3779 |
|
3780 |
+
#: admin/db-backup-security/db-backup-security.php:900
|
3781 |
+
#: admin/db-backup-security/db-backup-security.php:918
|
3782 |
msgid "Download"
|
3783 |
msgstr ""
|
3784 |
|
3785 |
+
#: admin/db-backup-security/db-backup-security.php:901
|
3786 |
msgid "Backup Folder"
|
3787 |
msgstr ""
|
3788 |
|
3789 |
+
#: admin/db-backup-security/db-backup-security.php:902
|
3790 |
msgid "Size"
|
3791 |
msgstr ""
|
3792 |
|
3793 |
+
#: admin/db-backup-security/db-backup-security.php:903
|
3794 |
msgid "Date|Time"
|
3795 |
msgstr ""
|
3796 |
|
3797 |
+
#: admin/db-backup-security/db-backup-security.php:933
|
3798 |
msgid "No Backup Jobs have been Run yet. No Files in Backup."
|
3799 |
msgstr ""
|
3800 |
|
3801 |
+
#: admin/db-backup-security/db-backup-security.php:949
|
3802 |
msgid "Click OK to Delete Backup File(s) or click Cancel"
|
3803 |
msgstr ""
|
3804 |
|
3805 |
+
#: admin/db-backup-security/db-backup-security.php:972
|
3806 |
msgid "Create Backup Jobs"
|
3807 |
msgstr ""
|
3808 |
|
3809 |
+
#: admin/db-backup-security/db-backup-security.php:997
|
3810 |
msgid "Database Tables "
|
3811 |
msgstr ""
|
3812 |
|
3813 |
+
#: admin/db-backup-security/db-backup-security.php:998
|
3814 |
msgid "Backup Job Settings|Independent Options"
|
3815 |
msgstr ""
|
3816 |
|
3817 |
+
#: admin/db-backup-security/db-backup-security.php:1011
|
3818 |
+
#: admin/mscan/mscan.php:1055
|
3819 |
msgid "All"
|
3820 |
msgstr ""
|
3821 |
|
3822 |
+
#: admin/db-backup-security/db-backup-security.php:1012
|
3823 |
+
#: admin/db-backup-security/db-backup-security.php:1670
|
3824 |
msgid "DB Table Name"
|
3825 |
msgstr ""
|
3826 |
|
3827 |
+
#: admin/db-backup-security/db-backup-security.php:1058
|
3828 |
msgid "Description|Backup Job Name:"
|
3829 |
msgstr ""
|
3830 |
|
3831 |
+
#: admin/db-backup-security/db-backup-security.php:1062
|
3832 |
msgid "DB Backup Folder Location:"
|
3833 |
msgstr ""
|
3834 |
|
3835 |
+
#: admin/db-backup-security/db-backup-security.php:1063
|
3836 |
msgid "Recommended: Use The Default Obfuscated & Secure BPS Backup Folder."
|
3837 |
msgstr ""
|
3838 |
|
3839 |
+
#: admin/db-backup-security/db-backup-security.php:1066
|
3840 |
msgid "DB Backup File Download Link|URL:"
|
3841 |
msgstr ""
|
3842 |
|
3843 |
+
#: admin/db-backup-security/db-backup-security.php:1067
|
3844 |
msgid ""
|
3845 |
"Note: If you see 404 errors when trying to download zip files or if you have "
|
3846 |
"changed the DB Backup Folder Location above, click the Question Mark help "
|
3847 |
"button."
|
3848 |
msgstr ""
|
3849 |
|
3850 |
+
#: admin/db-backup-security/db-backup-security.php:1070
|
3851 |
msgid "Backup Job Type: Manual or Scheduled"
|
3852 |
msgstr ""
|
3853 |
|
3854 |
+
#: admin/db-backup-security/db-backup-security.php:1072
|
3855 |
msgid "Manual DB Backup Job"
|
3856 |
msgstr ""
|
3857 |
|
3858 |
+
#: admin/db-backup-security/db-backup-security.php:1073
|
3859 |
msgid "Scheduled DB Backup Job"
|
3860 |
msgstr ""
|
3861 |
|
3862 |
+
#: admin/db-backup-security/db-backup-security.php:1076
|
3863 |
msgid "Frequency of Scheduled Backup Job (recurring)"
|
3864 |
msgstr ""
|
3865 |
|
3866 |
+
#: admin/db-backup-security/db-backup-security.php:1078
|
3867 |
+
#: admin/db-backup-security/db-backup-security.php:1087
|
3868 |
+
#: admin/db-backup-security/db-backup-security.php:1116
|
3869 |
+
#: admin/db-backup-security/db-backup-security.php:1128
|
3870 |
msgid "N/A"
|
3871 |
msgstr ""
|
3872 |
|
3873 |
+
#: admin/db-backup-security/db-backup-security.php:1079
|
3874 |
msgid "Hourly Scheduled DB Backup Job"
|
3875 |
msgstr ""
|
3876 |
|
3877 |
+
#: admin/db-backup-security/db-backup-security.php:1080
|
3878 |
msgid "Daily Scheduled DB Backup Job"
|
3879 |
msgstr ""
|
3880 |
|
3881 |
+
#: admin/db-backup-security/db-backup-security.php:1081
|
3882 |
msgid "Weekly Scheduled DB Backup Job"
|
3883 |
msgstr ""
|
3884 |
|
3885 |
+
#: admin/db-backup-security/db-backup-security.php:1082
|
3886 |
msgid "Monthly Scheduled DB Backup Job"
|
3887 |
msgstr ""
|
3888 |
|
3889 |
+
#: admin/db-backup-security/db-backup-security.php:1085
|
3890 |
msgid "Hour When Scheduled Backup is Run (recurring)"
|
3891 |
msgstr ""
|
3892 |
|
3893 |
+
#: admin/db-backup-security/db-backup-security.php:1088
|
3894 |
msgid "12AM"
|
3895 |
msgstr ""
|
3896 |
|
3897 |
+
#: admin/db-backup-security/db-backup-security.php:1089
|
3898 |
msgid "1AM"
|
3899 |
msgstr ""
|
3900 |
|
3901 |
+
#: admin/db-backup-security/db-backup-security.php:1090
|
3902 |
msgid "2AM"
|
3903 |
msgstr ""
|
3904 |
|
3905 |
+
#: admin/db-backup-security/db-backup-security.php:1091
|
3906 |
msgid "3AM"
|
3907 |
msgstr ""
|
3908 |
|
3909 |
+
#: admin/db-backup-security/db-backup-security.php:1092
|
3910 |
msgid "4AM"
|
3911 |
msgstr ""
|
3912 |
|
3913 |
+
#: admin/db-backup-security/db-backup-security.php:1093
|
3914 |
msgid "5AM"
|
3915 |
msgstr ""
|
3916 |
|
3917 |
+
#: admin/db-backup-security/db-backup-security.php:1094
|
3918 |
msgid "6AM"
|
3919 |
msgstr ""
|
3920 |
|
3921 |
+
#: admin/db-backup-security/db-backup-security.php:1095
|
3922 |
msgid "7AM"
|
3923 |
msgstr ""
|
3924 |
|
3925 |
+
#: admin/db-backup-security/db-backup-security.php:1096
|
3926 |
msgid "8AM"
|
3927 |
msgstr ""
|
3928 |
|
3929 |
+
#: admin/db-backup-security/db-backup-security.php:1097
|
3930 |
msgid "9AM"
|
3931 |
msgstr ""
|
3932 |
|
3933 |
+
#: admin/db-backup-security/db-backup-security.php:1098
|
3934 |
msgid "10AM"
|
3935 |
msgstr ""
|
3936 |
|
3937 |
+
#: admin/db-backup-security/db-backup-security.php:1099
|
3938 |
msgid "11AM"
|
3939 |
msgstr ""
|
3940 |
|
3941 |
+
#: admin/db-backup-security/db-backup-security.php:1100
|
3942 |
msgid "12PM"
|
3943 |
msgstr ""
|
3944 |
|
3945 |
+
#: admin/db-backup-security/db-backup-security.php:1101
|
3946 |
msgid "1PM"
|
3947 |
msgstr ""
|
3948 |
|
3949 |
+
#: admin/db-backup-security/db-backup-security.php:1102
|
3950 |
msgid "2PM"
|
3951 |
msgstr ""
|
3952 |
|
3953 |
+
#: admin/db-backup-security/db-backup-security.php:1103
|
3954 |
msgid "3PM"
|
3955 |
msgstr ""
|
3956 |
|
3957 |
+
#: admin/db-backup-security/db-backup-security.php:1104
|
3958 |
msgid "4PM"
|
3959 |
msgstr ""
|
3960 |
|
3961 |
+
#: admin/db-backup-security/db-backup-security.php:1105
|
3962 |
msgid "5PM"
|
3963 |
msgstr ""
|
3964 |
|
3965 |
+
#: admin/db-backup-security/db-backup-security.php:1106
|
3966 |
msgid "6PM"
|
3967 |
msgstr ""
|
3968 |
|
3969 |
+
#: admin/db-backup-security/db-backup-security.php:1107
|
3970 |
msgid "7PM"
|
3971 |
msgstr ""
|
3972 |
|
3973 |
+
#: admin/db-backup-security/db-backup-security.php:1108
|
3974 |
msgid "8PM"
|
3975 |
msgstr ""
|
3976 |
|
3977 |
+
#: admin/db-backup-security/db-backup-security.php:1109
|
3978 |
msgid "9PM"
|
3979 |
msgstr ""
|
3980 |
|
3981 |
+
#: admin/db-backup-security/db-backup-security.php:1110
|
3982 |
msgid "10PM"
|
3983 |
msgstr ""
|
3984 |
|
3985 |
+
#: admin/db-backup-security/db-backup-security.php:1111
|
3986 |
msgid "11PM"
|
3987 |
msgstr ""
|
3988 |
|
3989 |
+
#: admin/db-backup-security/db-backup-security.php:1114
|
3990 |
msgid "Day of Week When Scheduled Backup is Run (recurring)"
|
3991 |
msgstr ""
|
3992 |
|
3993 |
+
#: admin/db-backup-security/db-backup-security.php:1117
|
3994 |
msgid "Sunday"
|
3995 |
msgstr ""
|
3996 |
|
3997 |
+
#: admin/db-backup-security/db-backup-security.php:1118
|
3998 |
msgid "Monday"
|
3999 |
msgstr ""
|
4000 |
|
4001 |
+
#: admin/db-backup-security/db-backup-security.php:1119
|
4002 |
msgid "Tuesday"
|
4003 |
msgstr ""
|
4004 |
|
4005 |
+
#: admin/db-backup-security/db-backup-security.php:1120
|
4006 |
msgid "Wednesday"
|
4007 |
msgstr ""
|
4008 |
|
4009 |
+
#: admin/db-backup-security/db-backup-security.php:1121
|
4010 |
msgid "Thursday"
|
4011 |
msgstr ""
|
4012 |
|
4013 |
+
#: admin/db-backup-security/db-backup-security.php:1122
|
4014 |
msgid "Friday"
|
4015 |
msgstr ""
|
4016 |
|
4017 |
+
#: admin/db-backup-security/db-backup-security.php:1123
|
4018 |
msgid "Saturday"
|
4019 |
msgstr ""
|
4020 |
|
4021 |
+
#: admin/db-backup-security/db-backup-security.php:1126
|
4022 |
msgid "Day of Month When Scheduled Backup is Run (recurring)"
|
4023 |
msgstr ""
|
4024 |
|
4025 |
+
#: admin/db-backup-security/db-backup-security.php:1129
|
4026 |
msgid "1st"
|
4027 |
msgstr ""
|
4028 |
|
4029 |
+
#: admin/db-backup-security/db-backup-security.php:1130
|
4030 |
msgid "2nd"
|
4031 |
msgstr ""
|
4032 |
|
4033 |
+
#: admin/db-backup-security/db-backup-security.php:1131
|
4034 |
msgid "3rd"
|
4035 |
msgstr ""
|
4036 |
|
4037 |
+
#: admin/db-backup-security/db-backup-security.php:1132
|
4038 |
msgid "4th"
|
4039 |
msgstr ""
|
4040 |
|
4041 |
+
#: admin/db-backup-security/db-backup-security.php:1133
|
4042 |
msgid "5th"
|
4043 |
msgstr ""
|
4044 |
|
4045 |
+
#: admin/db-backup-security/db-backup-security.php:1134
|
4046 |
msgid "6th"
|
4047 |
msgstr ""
|
4048 |
|
4049 |
+
#: admin/db-backup-security/db-backup-security.php:1135
|
4050 |
msgid "7th"
|
4051 |
msgstr ""
|
4052 |
|
4053 |
+
#: admin/db-backup-security/db-backup-security.php:1136
|
4054 |
msgid "8th"
|
4055 |
msgstr ""
|
4056 |
|
4057 |
+
#: admin/db-backup-security/db-backup-security.php:1137
|
4058 |
msgid "9th"
|
4059 |
msgstr ""
|
4060 |
|
4061 |
+
#: admin/db-backup-security/db-backup-security.php:1138
|
4062 |
msgid "10th"
|
4063 |
msgstr ""
|
4064 |
|
4065 |
+
#: admin/db-backup-security/db-backup-security.php:1139
|
4066 |
msgid "11th"
|
4067 |
msgstr ""
|
4068 |
|
4069 |
+
#: admin/db-backup-security/db-backup-security.php:1140
|
4070 |
msgid "12th"
|
4071 |
msgstr ""
|
4072 |
|
4073 |
+
#: admin/db-backup-security/db-backup-security.php:1141
|
4074 |
msgid "13th"
|
4075 |
msgstr ""
|
4076 |
|
4077 |
+
#: admin/db-backup-security/db-backup-security.php:1142
|
4078 |
msgid "14th"
|
4079 |
msgstr ""
|
4080 |
|
4081 |
+
#: admin/db-backup-security/db-backup-security.php:1143
|
4082 |
msgid "15th"
|
4083 |
msgstr ""
|
4084 |
|
4085 |
+
#: admin/db-backup-security/db-backup-security.php:1144
|
4086 |
msgid "16th"
|
4087 |
msgstr ""
|
4088 |
|
4089 |
+
#: admin/db-backup-security/db-backup-security.php:1145
|
4090 |
msgid "17th"
|
4091 |
msgstr ""
|
4092 |
|
4093 |
+
#: admin/db-backup-security/db-backup-security.php:1146
|
4094 |
msgid "18th"
|
4095 |
msgstr ""
|
4096 |
|
4097 |
+
#: admin/db-backup-security/db-backup-security.php:1147
|
4098 |
msgid "19th"
|
4099 |
msgstr ""
|
4100 |
|
4101 |
+
#: admin/db-backup-security/db-backup-security.php:1148
|
4102 |
msgid "20th"
|
4103 |
msgstr ""
|
4104 |
|
4105 |
+
#: admin/db-backup-security/db-backup-security.php:1149
|
4106 |
msgid "21st"
|
4107 |
msgstr ""
|
4108 |
|
4109 |
+
#: admin/db-backup-security/db-backup-security.php:1150
|
4110 |
msgid "22nd"
|
4111 |
msgstr ""
|
4112 |
|
4113 |
+
#: admin/db-backup-security/db-backup-security.php:1151
|
4114 |
msgid "23rd"
|
4115 |
msgstr ""
|
4116 |
|
4117 |
+
#: admin/db-backup-security/db-backup-security.php:1152
|
4118 |
msgid "24th"
|
4119 |
msgstr ""
|
4120 |
|
4121 |
+
#: admin/db-backup-security/db-backup-security.php:1153
|
4122 |
msgid "25th"
|
4123 |
msgstr ""
|
4124 |
|
4125 |
+
#: admin/db-backup-security/db-backup-security.php:1154
|
4126 |
msgid "26th"
|
4127 |
msgstr ""
|
4128 |
|
4129 |
+
#: admin/db-backup-security/db-backup-security.php:1155
|
4130 |
msgid "27th"
|
4131 |
msgstr ""
|
4132 |
|
4133 |
+
#: admin/db-backup-security/db-backup-security.php:1156
|
4134 |
msgid "28th"
|
4135 |
msgstr ""
|
4136 |
|
4137 |
+
#: admin/db-backup-security/db-backup-security.php:1157
|
4138 |
msgid "29th"
|
4139 |
msgstr ""
|
4140 |
|
4141 |
+
#: admin/db-backup-security/db-backup-security.php:1158
|
4142 |
msgid "30th"
|
4143 |
msgstr ""
|
4144 |
|
4145 |
+
#: admin/db-backup-security/db-backup-security.php:1161
|
4146 |
msgid "Send Scheduled Backup Zip File Via Email or Just Email Only:"
|
4147 |
msgstr ""
|
4148 |
|
4149 |
+
#: admin/db-backup-security/db-backup-security.php:1162
|
4150 |
msgid ""
|
4151 |
"Note: Check with your email provider for the maximum<br>file attachment size "
|
4152 |
"limit that is allowed by your Mail Server"
|
4153 |
msgstr ""
|
4154 |
|
4155 |
+
#: admin/db-backup-security/db-backup-security.php:1164
|
4156 |
msgid "Do Not Email Zip Backup File"
|
4157 |
msgstr ""
|
4158 |
|
4159 |
+
#: admin/db-backup-security/db-backup-security.php:1165
|
4160 |
msgid "Email & Delete Zip Backup File"
|
4161 |
msgstr ""
|
4162 |
|
4163 |
+
#: admin/db-backup-security/db-backup-security.php:1166
|
4164 |
msgid "Email Zip Backup File"
|
4165 |
msgstr ""
|
4166 |
|
4167 |
+
#: admin/db-backup-security/db-backup-security.php:1167
|
4168 |
msgid "Send Email Only & Not Zip Backup File"
|
4169 |
msgstr ""
|
4170 |
|
4171 |
+
#: admin/db-backup-security/db-backup-security.php:1170
|
4172 |
msgid "Automatically Delete Old Backup Files:"
|
4173 |
msgstr ""
|
4174 |
|
4175 |
+
#: admin/db-backup-security/db-backup-security.php:1171
|
4176 |
+
#: admin/db-backup-security/db-backup-security.php:1185
|
4177 |
msgid "Independent Option:"
|
4178 |
msgstr ""
|
4179 |
|
4180 |
+
#: admin/db-backup-security/db-backup-security.php:1173
|
4181 |
msgid "Never Delete Old Backup Files"
|
4182 |
msgstr ""
|
4183 |
|
4184 |
+
#: admin/db-backup-security/db-backup-security.php:1174
|
4185 |
msgid "Delete Backup Files Older Than 1 Day"
|
4186 |
msgstr ""
|
4187 |
|
4188 |
+
#: admin/db-backup-security/db-backup-security.php:1175
|
4189 |
msgid "Delete Backup Files Older Than 5 Days"
|
4190 |
msgstr ""
|
4191 |
|
4192 |
+
#: admin/db-backup-security/db-backup-security.php:1176
|
4193 |
msgid "Delete Backup Files Older Than 10 Days"
|
4194 |
msgstr ""
|
4195 |
|
4196 |
+
#: admin/db-backup-security/db-backup-security.php:1177
|
4197 |
msgid "Delete Backup Files Older Than 15 Days"
|
4198 |
msgstr ""
|
4199 |
|
4200 |
+
#: admin/db-backup-security/db-backup-security.php:1178
|
4201 |
msgid "Delete Backup Files Older Than 30 Days"
|
4202 |
msgstr ""
|
4203 |
|
4204 |
+
#: admin/db-backup-security/db-backup-security.php:1179
|
4205 |
msgid "Delete Backup Files Older Than 60 Days"
|
4206 |
msgstr ""
|
4207 |
|
4208 |
+
#: admin/db-backup-security/db-backup-security.php:1180
|
4209 |
msgid "Delete Backup Files Older Than 90 Days"
|
4210 |
msgstr ""
|
4211 |
|
4212 |
+
#: admin/db-backup-security/db-backup-security.php:1181
|
4213 |
msgid "Delete Backup Files Older Than 180 Days"
|
4214 |
msgstr ""
|
4215 |
|
4216 |
+
#: admin/db-backup-security/db-backup-security.php:1184
|
4217 |
msgid "Turn On|Off All Scheduled Backups (Override):"
|
4218 |
msgstr ""
|
4219 |
|
4220 |
+
#: admin/db-backup-security/db-backup-security.php:1187
|
4221 |
msgid "All Scheduled Backups On"
|
4222 |
msgstr ""
|
4223 |
|
4224 |
+
#: admin/db-backup-security/db-backup-security.php:1188
|
4225 |
msgid "All Scheduled Backups Off"
|
4226 |
msgstr ""
|
4227 |
|
4228 |
+
#: admin/db-backup-security/db-backup-security.php:1191
|
4229 |
msgid "Click OK to Create this Backup Job or click Cancel"
|
4230 |
msgstr ""
|
4231 |
|
4232 |
+
#: admin/db-backup-security/db-backup-security.php:1209
|
4233 |
msgid "Rename|Create|Reset DB Backup Folder Name:"
|
4234 |
msgstr ""
|
4235 |
|
4236 |
+
#: admin/db-backup-security/db-backup-security.php:1210
|
4237 |
msgid "Randomly Generated New DB Backup Folder Name."
|
4238 |
msgstr ""
|
4239 |
|
4240 |
+
#: admin/db-backup-security/db-backup-security.php:1211
|
4241 |
msgid "Valid Folder Naming Characters: a-z A-Z 0-9 - _"
|
4242 |
msgstr ""
|
4243 |
|
4244 |
+
#: admin/db-backup-security/db-backup-security.php:1214
|
4245 |
msgid ""
|
4246 |
"The Rename|Create|Reset Tool renames the DB Backup folder if it already "
|
4247 |
"exists or creates a new DB Backup folder if it does not already exist.\\n"
|
4253 |
"OK to proceed or click Cancel"
|
4254 |
msgstr ""
|
4255 |
|
4256 |
+
#: admin/db-backup-security/db-backup-security.php:1292
|
4257 |
+
#: admin/db-backup-security/db-backup-security.php:1296
|
4258 |
msgid "DB Backup Log File Size: "
|
4259 |
msgstr ""
|
4260 |
|
4261 |
+
#: admin/db-backup-security/db-backup-security.php:1296
|
4262 |
msgid "The Email Logging options will only send log files up to 2MB in size."
|
4263 |
msgstr ""
|
4264 |
|
4265 |
+
#: admin/db-backup-security/db-backup-security.php:1296
|
4266 |
msgid ""
|
4267 |
"Copy and paste the DB Backup Log file contents into a Notepad text file on "
|
4268 |
"your computer and save it."
|
4269 |
msgstr ""
|
4270 |
|
4271 |
+
#: admin/db-backup-security/db-backup-security.php:1296
|
4272 |
+
#: admin/mscan/mscan.php:2195
|
4273 |
msgid ""
|
4274 |
"Then click the Delete Log button to delete the contents of this Log file."
|
4275 |
msgstr ""
|
4276 |
|
4277 |
+
#: admin/db-backup-security/db-backup-security.php:1312
|
4278 |
msgid "DB Backup Log Last Modified Time: "
|
4279 |
msgstr ""
|
4280 |
|
4281 |
+
#: admin/db-backup-security/db-backup-security.php:1327
|
4282 |
msgid ""
|
4283 |
"Success! Your DB Backup Log file has been deleted and replaced with a new "
|
4284 |
"blank DB Backup Log file."
|
4285 |
msgstr ""
|
4286 |
|
4287 |
+
#: admin/db-backup-security/db-backup-security.php:1335
|
4288 |
msgid "Clicking OK will delete the contents of your DB Backup Log file."
|
4289 |
msgstr ""
|
4290 |
|
4291 |
+
#: admin/db-backup-security/db-backup-security.php:1335
|
4292 |
+
#: admin/mscan/mscan.php:2239 admin/security-log/security-log.php:509
|
4293 |
msgid "Click OK to Delete the Log file contents or click Cancel."
|
4294 |
msgstr ""
|
4295 |
|
4296 |
+
#: admin/db-backup-security/db-backup-security.php:1355
|
4297 |
msgid ""
|
4298 |
"The DB Backup Log File Was Not Found! Check that the file really exists here "
|
4299 |
"- /"
|
4300 |
msgstr ""
|
4301 |
|
4302 |
+
#: admin/db-backup-security/db-backup-security.php:1355
|
4303 |
msgid "/bps-backup/logs/db_backup_log.txt and is named correctly."
|
4304 |
msgstr ""
|
4305 |
|
4306 |
+
#: admin/db-backup-security/db-backup-security.php:1377
|
4307 |
msgid ""
|
4308 |
"File Open and Write test successful! Your DB Backup Log file is writable."
|
4309 |
msgstr ""
|
4310 |
|
4311 |
+
#: admin/db-backup-security/db-backup-security.php:1390
|
4312 |
msgid "Success! Your DB Backup Log file has been updated."
|
4313 |
msgstr ""
|
4314 |
|
4315 |
+
#: admin/db-backup-security/db-backup-security.php:1462
|
4316 |
msgid "Your current WordPress Database Table Prefix is: "
|
4317 |
msgstr ""
|
4318 |
|
4319 |
+
#: admin/db-backup-security/db-backup-security.php:1462
|
4320 |
msgid "NOTES: "
|
4321 |
msgstr ""
|
4322 |
|
4323 |
+
#: admin/db-backup-security/db-backup-security.php:1462
|
4324 |
msgid ""
|
4325 |
"1. It is recommended that you backup your database before using this tool."
|
4326 |
msgstr ""
|
4327 |
|
4328 |
+
#: admin/db-backup-security/db-backup-security.php:1462
|
4329 |
msgid ""
|
4330 |
"2. If you want to create your own DB Table Prefix name or add additional "
|
4331 |
"characters to the randomly generated DB Table Prefix name below then ONLY "
|
4332 |
"use lowercase letters, numbers and underscores in your DB Table Prefix name."
|
4333 |
msgstr ""
|
4334 |
|
4335 |
+
#: admin/db-backup-security/db-backup-security.php:1462
|
4336 |
msgid ""
|
4337 |
"3. The maximum length limitation of a DB Table name, including the table "
|
4338 |
"prefix is 64 characters. See the DB Table Names & Character Length Table to "
|
4339 |
"the right."
|
4340 |
msgstr ""
|
4341 |
|
4342 |
+
#: admin/db-backup-security/db-backup-security.php:1462
|
4343 |
msgid ""
|
4344 |
"4. To change your DB Table Prefix name back to the WordPress default DB "
|
4345 |
"Table Prefix name, enter wp_ for the DB Table Prefix name."
|
4346 |
msgstr ""
|
4347 |
|
4348 |
+
#: admin/db-backup-security/db-backup-security.php:1475
|
4349 |
msgid ""
|
4350 |
"ERROR: The DB Table Prefix name can only contain numbers, lowercase letters, "
|
4351 |
"and underscores."
|
4352 |
msgstr ""
|
4353 |
|
4354 |
+
#: admin/db-backup-security/db-backup-security.php:1490
|
4355 |
msgid "A wp-config.php file was NOT found in your website root folder."
|
4356 |
msgstr ""
|
4357 |
|
4358 |
+
#: admin/db-backup-security/db-backup-security.php:1490
|
4359 |
msgid ""
|
4360 |
"Your DB Table Prefix was not changed. If you have moved your wp-config.php "
|
4361 |
"file to a another Server folder then you can use this tool to change your DB "
|
4363 |
"file back to the default location: your WordPress website root folder."
|
4364 |
msgstr ""
|
4365 |
|
4366 |
+
#: admin/db-backup-security/db-backup-security.php:1511
|
4367 |
msgid ""
|
4368 |
"Error: The wp-config.php file is not writable. Unable to write to the wp-"
|
4369 |
"config.php file."
|
4370 |
msgstr ""
|
4371 |
|
4372 |
+
#: admin/db-backup-security/db-backup-security.php:1511
|
4373 |
msgid ""
|
4374 |
"Your DB Table Prefix was not changed. You will need to make the wp-config."
|
4375 |
"php file writable first by changing either the file permissions or Ownership "
|
4377 |
"DB Table Prefix Changer tool to change your DB Table Prefix."
|
4378 |
msgstr ""
|
4379 |
|
4380 |
+
#: admin/db-backup-security/db-backup-security.php:1556
|
4381 |
msgid ""
|
4382 |
"DB Table Prefix Name change completed. Click the Load|Refresh Table button "
|
4383 |
"to load/refresh the DB Table Names & Character Length Table if you would "
|
4384 |
"like to check the new DB Table Prefix Name Changes."
|
4385 |
msgstr ""
|
4386 |
|
4387 |
+
#: admin/db-backup-security/db-backup-security.php:1563
|
4388 |
msgid ""
|
4389 |
"Click the Update Site User Roles button to complete the DB Table Prefix Name "
|
4390 |
"change."
|
4391 |
msgstr ""
|
4392 |
|
4393 |
+
#: admin/db-backup-security/db-backup-security.php:1595
|
4394 |
msgid "Randomly Generated DB Table Prefix"
|
4395 |
msgstr ""
|
4396 |
|
4397 |
+
#: admin/db-backup-security/db-backup-security.php:1632
|
4398 |
msgid ""
|
4399 |
"DB Table Prefix Name change completed. Click the Load|Refresh Table button "
|
4400 |
"to load/refresh the DB Table Names & Character Length Table if you would "
|
4403 |
"new DB Table names."
|
4404 |
msgstr ""
|
4405 |
|
4406 |
+
#: admin/db-backup-security/db-backup-security.php:1644
|
4407 |
msgid ""
|
4408 |
"This button must be clicked AFTER clicking the Change DB Table Prefix button "
|
4409 |
"above."
|
4410 |
msgstr ""
|
4411 |
|
4412 |
+
#: admin/db-backup-security/db-backup-security.php:1671
|
4413 |
msgid "Length"
|
4414 |
msgstr ""
|
4415 |
|
4416 |
+
#: admin/db-backup-security/db-backup-security.php:1695
|
4417 |
msgid "DB Table Name|Column"
|
4418 |
msgstr ""
|
4419 |
|
4420 |
+
#: admin/db-backup-security/db-backup-security.php:1696
|
4421 |
msgid "Other Prefix Changes"
|
4422 |
msgstr ""
|
4423 |
|
4424 |
+
#: admin/db-backup-security/db-backup-security.php:1753
|
4425 |
msgid "DB Table Names & Character Length Table"
|
4426 |
msgstr ""
|
4427 |
|
4428 |
+
#: admin/db-backup-security/db-backup-security.php:1754
|
4429 |
msgid ""
|
4430 |
"Displays your Current DB Table Names & Length Including The DB Table Prefix"
|
4431 |
msgstr ""
|
4432 |
|
4433 |
+
#: admin/db-backup-security/db-backup-security.php:1797
|
4434 |
+
#: admin/mscan/mscan.php:3692 admin/theme-skin/theme-skin.php:235
|
4435 |
msgid "BPS Pro Features & Version Release Dates"
|
4436 |
msgstr ""
|
4437 |
|
4438 |
+
#: admin/db-backup-security/db-backup-security.php:1798
|
4439 |
+
#: admin/mscan/mscan.php:3693 admin/theme-skin/theme-skin.php:236
|
4440 |
msgid "Video Tutorials"
|
4441 |
msgstr ""
|
4442 |
|
4443 |
+
#: admin/db-backup-security/db-backup-security.php:1799
|
4444 |
msgid "DB Backup & Security Guide & Troubleshooting"
|
4445 |
msgstr ""
|
4446 |
|
4678 |
msgid "Refresh Status"
|
4679 |
msgstr ""
|
4680 |
|
4681 |
+
#: admin/email-log-settings/email-log-settings.php:288
|
4682 |
msgid "Reset|Recheck Dismiss Notices:"
|
4683 |
msgstr ""
|
4684 |
|
4685 |
+
#: admin/email-log-settings/email-log-settings.php:288
|
4686 |
msgid ""
|
4687 |
"Clicking this button resets ALL Dismiss Notices such as Bonus Code Dismiss "
|
4688 |
"Notices and ALL other Dismiss Notices. If you previously dismissed a Dismiss "
|
4689 |
"Notice and want to display it again at a later time click this button."
|
4690 |
msgstr ""
|
4691 |
|
4692 |
+
#: admin/email-log-settings/email-log-settings.php:288
|
4693 |
msgid "Email Alerts & Log File Settings"
|
4694 |
msgstr ""
|
4695 |
|
4696 |
+
#: admin/email-log-settings/email-log-settings.php:288
|
4697 |
msgid ""
|
4698 |
"The email address fields To, From, Cc and Bcc can be email addresses for "
|
4699 |
"your hosting account, your WordPress Administrator email address or 3rd "
|
4703 |
"space or not add a space after the comma between email addresses."
|
4704 |
msgstr ""
|
4705 |
|
4706 |
+
#: admin/email-log-settings/email-log-settings.php:288
|
4707 |
msgid ""
|
4708 |
"Email Alerting and Log file options are located in S-Monitor in BPS Pro."
|
4709 |
msgstr ""
|
4710 |
|
4711 |
+
#: admin/email-log-settings/email-log-settings.php:288
|
4712 |
msgid "Login Security: Send Email Alert When..."
|
4713 |
msgstr ""
|
4714 |
|
4715 |
+
#: admin/email-log-settings/email-log-settings.php:288
|
4716 |
msgid ""
|
4717 |
"There are 5 different email options. Choose to have email alerts sent when a "
|
4718 |
"User Account is locked out, An Administrator Logs in, An Administrator Logs "
|
4720 |
"Account is locked out or Do Not Send Email Alerts."
|
4721 |
msgstr ""
|
4722 |
|
4723 |
+
#: admin/email-log-settings/email-log-settings.php:288
|
4724 |
msgid ""
|
4725 |
"The email alerts contain the action that occurred with Timestamp and these "
|
4726 |
"fields: Username, Status, Role, Email, Lockout Time, Lockout Time Expires, "
|
4728 |
"where the action occurred."
|
4729 |
msgstr ""
|
4730 |
|
4731 |
+
#: admin/email-log-settings/email-log-settings.php:288
|
4732 |
msgid "Security Log File Email|Delete Log File When..."
|
4733 |
msgstr ""
|
4734 |
|
4735 |
+
#: admin/email-log-settings/email-log-settings.php:288
|
4736 |
msgid ""
|
4737 |
"Select the maximum Log File size that you want to allow for your Security "
|
4738 |
"Log File and then select the option that you want when your log file reaches "
|
4740 |
"and delete it or just delete it without emailing the log file to you first."
|
4741 |
msgstr ""
|
4742 |
|
4743 |
+
#: admin/email-log-settings/email-log-settings.php:288
|
4744 |
msgid "DB Backup Log File Email|Delete Log File When..."
|
4745 |
msgstr ""
|
4746 |
|
4747 |
+
#: admin/email-log-settings/email-log-settings.php:288
|
4748 |
msgid ""
|
4749 |
"Select the maximum Log File size that you want to allow for your DB Backup "
|
4750 |
"Log File and then select the option that you want when your log file reaches "
|
4752 |
"and delete it or just delete it without emailing the log file to you first."
|
4753 |
msgstr ""
|
4754 |
|
4755 |
+
#: admin/email-log-settings/email-log-settings.php:288
|
4756 |
+
#: admin/email-log-settings/email-log-settings.php:381
|
4757 |
msgid "MScan Malware Scanner Email|Delete Log File When..."
|
4758 |
msgstr ""
|
4759 |
|
4760 |
+
#: admin/email-log-settings/email-log-settings.php:288
|
4761 |
msgid ""
|
4762 |
"Select the maximum Log File size that you want to allow for your MScan Log "
|
4763 |
"File and then select the option that you want when your log file reaches "
|
4765 |
"and delete it or just delete it without emailing the log file to you first."
|
4766 |
msgstr ""
|
4767 |
|
4768 |
+
#: admin/email-log-settings/email-log-settings.php:288
|
4769 |
+
#: admin/email-log-settings/email-log-settings.php:393
|
4770 |
msgid "Plugin Updates Available Email Alert:"
|
4771 |
msgstr ""
|
4772 |
|
4773 |
+
#: admin/email-log-settings/email-log-settings.php:288
|
4774 |
msgid ""
|
4775 |
"Choose whether or not to have email alerts sent if new Plugin version "
|
4776 |
"updates are available. The default setting is \"Do Not Send Email Alerts\". "
|
4778 |
"Plugins."
|
4779 |
msgstr ""
|
4780 |
|
4781 |
+
#: admin/email-log-settings/email-log-settings.php:288
|
4782 |
+
#: admin/email-log-settings/email-log-settings.php:406
|
4783 |
msgid "Theme Updates Available Email Alert:"
|
4784 |
msgstr ""
|
4785 |
|
4786 |
+
#: admin/email-log-settings/email-log-settings.php:288
|
4787 |
msgid ""
|
4788 |
"Choose whether or not to have email alerts sent if new Theme version updates "
|
4789 |
"are available. The default setting is \"Do Not Send Email Alerts\". You can "
|
4790 |
"choose either to send email alerts for all Themes or only the Active Theme."
|
4791 |
msgstr ""
|
4792 |
|
4793 |
+
#: admin/email-log-settings/email-log-settings.php:295
|
4794 |
msgid "Reset|Recheck Dismiss Notices: "
|
4795 |
msgstr ""
|
4796 |
|
4797 |
+
#: admin/email-log-settings/email-log-settings.php:327
|
4798 |
msgid "Send Email Alerts & Log Files To:"
|
4799 |
msgstr ""
|
4800 |
|
4801 |
+
#: admin/email-log-settings/email-log-settings.php:331
|
4802 |
msgid "Send Email Alerts & Log Files From:"
|
4803 |
msgstr ""
|
4804 |
|
4805 |
+
#: admin/email-log-settings/email-log-settings.php:335
|
4806 |
msgid "Send Email Alerts & Log Files Cc:"
|
4807 |
msgstr ""
|
4808 |
|
4809 |
+
#: admin/email-log-settings/email-log-settings.php:339
|
4810 |
msgid "Send Email Alerts & Log Files Bcc:"
|
4811 |
msgstr ""
|
4812 |
|
4813 |
+
#: admin/email-log-settings/email-log-settings.php:347
|
4814 |
msgid "Login Security: Send Login Security Email Alert When..."
|
4815 |
msgstr ""
|
4816 |
|
4817 |
+
#: admin/email-log-settings/email-log-settings.php:349
|
4818 |
msgid "A User Account Is Locked Out"
|
4819 |
msgstr ""
|
4820 |
|
4821 |
+
#: admin/email-log-settings/email-log-settings.php:350
|
4822 |
msgid "An Administrator Logs In"
|
4823 |
msgstr ""
|
4824 |
|
4825 |
+
#: admin/email-log-settings/email-log-settings.php:351
|
4826 |
msgid "An Administrator Logs In & A User Account is Locked Out"
|
4827 |
msgstr ""
|
4828 |
|
4829 |
+
#: admin/email-log-settings/email-log-settings.php:352
|
4830 |
msgid "Any User Logs In & A User Account is Locked Out"
|
4831 |
msgstr ""
|
4832 |
|
4833 |
+
#: admin/email-log-settings/email-log-settings.php:353
|
4834 |
+
#: admin/email-log-settings/email-log-settings.php:400
|
4835 |
+
#: admin/email-log-settings/email-log-settings.php:413
|
4836 |
msgid "Do Not Send Email Alerts"
|
4837 |
msgstr ""
|
4838 |
|
4839 |
+
#: admin/email-log-settings/email-log-settings.php:357
|
4840 |
msgid "Security Log: Email|Delete Security Log File When..."
|
4841 |
msgstr ""
|
4842 |
|
|
|
|
|
|
|
|
|
|
|
|
|
4843 |
#: admin/email-log-settings/email-log-settings.php:359
|
4844 |
#: admin/email-log-settings/email-log-settings.php:371
|
4845 |
#: admin/email-log-settings/email-log-settings.php:383
|
4846 |
+
msgid "500KB"
|
4847 |
msgstr ""
|
4848 |
|
4849 |
#: admin/email-log-settings/email-log-settings.php:360
|
4850 |
#: admin/email-log-settings/email-log-settings.php:372
|
4851 |
#: admin/email-log-settings/email-log-settings.php:384
|
4852 |
+
msgid "256KB"
|
4853 |
msgstr ""
|
4854 |
|
4855 |
+
#: admin/email-log-settings/email-log-settings.php:361
|
4856 |
+
#: admin/email-log-settings/email-log-settings.php:373
|
4857 |
+
#: admin/email-log-settings/email-log-settings.php:385
|
4858 |
+
msgid "1MB"
|
4859 |
msgstr ""
|
4860 |
|
4861 |
#: admin/email-log-settings/email-log-settings.php:364
|
4862 |
#: admin/email-log-settings/email-log-settings.php:376
|
4863 |
#: admin/email-log-settings/email-log-settings.php:388
|
4864 |
+
msgid "Email Log & Then Delete Log File"
|
4865 |
msgstr ""
|
4866 |
|
4867 |
+
#: admin/email-log-settings/email-log-settings.php:365
|
4868 |
+
#: admin/email-log-settings/email-log-settings.php:377
|
4869 |
+
#: admin/email-log-settings/email-log-settings.php:389
|
4870 |
+
msgid "Delete Log File"
|
4871 |
msgstr ""
|
4872 |
|
4873 |
+
#: admin/email-log-settings/email-log-settings.php:369
|
4874 |
+
msgid "DB Backup Log: Email|Delete DB Backup Log File When..."
|
|
|
4875 |
msgstr ""
|
4876 |
|
4877 |
#: admin/email-log-settings/email-log-settings.php:395
|
4878 |
#: admin/email-log-settings/email-log-settings.php:408
|
4879 |
+
msgid "1 Hour"
|
4880 |
msgstr ""
|
4881 |
|
4882 |
#: admin/email-log-settings/email-log-settings.php:396
|
4883 |
#: admin/email-log-settings/email-log-settings.php:409
|
4884 |
+
msgid "12 Hours"
|
4885 |
+
msgstr ""
|
4886 |
+
|
4887 |
+
#: admin/email-log-settings/email-log-settings.php:397
|
4888 |
+
#: admin/email-log-settings/email-log-settings.php:410
|
4889 |
msgid "1 Day"
|
4890 |
msgstr ""
|
4891 |
|
4892 |
+
#: admin/email-log-settings/email-log-settings.php:401
|
4893 |
msgid "Send Email Alerts for All Plugins"
|
4894 |
msgstr ""
|
4895 |
|
4896 |
+
#: admin/email-log-settings/email-log-settings.php:402
|
4897 |
msgid "Send Email Alerts for Active Plugins Only"
|
4898 |
msgstr ""
|
4899 |
|
4900 |
+
#: admin/email-log-settings/email-log-settings.php:414
|
4901 |
msgid "Send Email Alerts for All Themes"
|
4902 |
msgstr ""
|
4903 |
|
4904 |
+
#: admin/email-log-settings/email-log-settings.php:415
|
4905 |
msgid "Send Email Alerts for Active Theme Only"
|
4906 |
msgstr ""
|
4907 |
|
4924 |
msgstr ""
|
4925 |
|
4926 |
#: admin/includes/admin.php:404 admin/includes/admin.php:429
|
4927 |
+
#: admin/login/login.php:167 admin/login/login.php:820
|
4928 |
+
#: admin/login/login.php:823
|
4929 |
msgid "JTC-Lite"
|
4930 |
msgstr ""
|
4931 |
|
4970 |
msgid "Security Log"
|
4971 |
msgstr ""
|
4972 |
|
4973 |
+
#: admin/includes/admin.php:445 admin/wizard/wizard.php:1003
|
4974 |
+
#: admin/wizard/wizard.php:1056 admin/wizard/wizard.php:1085
|
4975 |
+
#: admin/wizard/wizard.php:1088 bulletproof-security.php:158
|
4976 |
#: bulletproof-security.php:161
|
4977 |
msgid "Setup Wizard"
|
4978 |
msgstr ""
|
5065 |
msgid "Login Security & Monitoring"
|
5066 |
msgstr ""
|
5067 |
|
5068 |
+
#: admin/login/login.php:171 admin/login/login.php:1340
|
5069 |
+
#: admin/login/login.php:1342
|
5070 |
msgid "Idle Session Logout|Auth Cookie Expiration"
|
5071 |
msgstr ""
|
5072 |
|
5073 |
+
#: admin/login/login.php:173 admin/login/login.php:1913
|
5074 |
+
#: admin/login/login.php:1916
|
5075 |
msgid "Force Strong Passwords"
|
5076 |
msgstr ""
|
5077 |
|
5078 |
+
#: admin/login/login.php:183 admin/login/login.php:808
|
5079 |
#: admin/maintenance/maintenance.php:185
|
5080 |
msgid "Notice: "
|
5081 |
msgstr ""
|
5084 |
msgid "You have disabled wp-admin BulletProof Mode on the Security Modes page."
|
5085 |
msgstr ""
|
5086 |
|
5087 |
+
#: admin/login/login.php:183 admin/login/login.php:808
|
5088 |
#: admin/maintenance/maintenance.php:185
|
5089 |
msgid "If you have Go Daddy \"Managed WordPress Hosting\" click this link: "
|
5090 |
msgstr ""
|
5091 |
|
5092 |
+
#: admin/login/login.php:183 admin/login/login.php:808
|
5093 |
#: admin/maintenance/maintenance.php:185
|
5094 |
msgid "Go Daddy Managed WordPress Hosting"
|
5095 |
msgstr ""
|
5096 |
|
5097 |
+
#: admin/login/login.php:223 admin/login/login.php:320
|
5098 |
+
#: admin/mscan/mscan.php:1547 admin/mscan/mscan.php:1917
|
5099 |
msgid "Submit"
|
5100 |
msgstr ""
|
5101 |
|
5102 |
+
#: admin/login/login.php:257 admin/login/login.php:354
|
5103 |
msgid " has been deleted from the Login Security Database Table."
|
5104 |
msgstr ""
|
5105 |
|
5106 |
+
#: admin/login/login.php:279 admin/login/login.php:376
|
5107 |
msgid " has been Unlocked."
|
5108 |
msgstr ""
|
5109 |
|
5110 |
+
#: admin/login/login.php:302 admin/login/login.php:399
|
5111 |
msgid " has been Locked."
|
5112 |
msgstr ""
|
5113 |
|
5114 |
+
#: admin/login/login.php:430
|
5115 |
msgid "Max Login Attempts:"
|
5116 |
msgstr ""
|
5117 |
|
5118 |
+
#: admin/login/login.php:437
|
5119 |
msgid "Automatic Lockout Time:"
|
5120 |
msgstr ""
|
5121 |
|
5122 |
+
#: admin/login/login.php:440 admin/login/login.php:445
|
5123 |
msgid "Minutes"
|
5124 |
msgstr ""
|
5125 |
|
5126 |
+
#: admin/login/login.php:443
|
5127 |
msgid "Manual Lockout Time:"
|
5128 |
msgstr ""
|
5129 |
|
5130 |
+
#: admin/login/login.php:448
|
5131 |
msgid "Max DB Rows To Show:"
|
5132 |
msgstr ""
|
5133 |
|
5134 |
+
#: admin/login/login.php:450
|
5135 |
msgid "Blank = Show All Rows"
|
5136 |
msgstr ""
|
5137 |
|
5138 |
+
#: admin/login/login.php:455
|
5139 |
msgid " Enable Login Security for WooCommerce (BPS Pro Only)"
|
5140 |
msgstr ""
|
5141 |
|
5142 |
+
#: admin/login/login.php:460 admin/login/login.php:1522
|
5143 |
+
#: admin/login/login.php:1824 admin/login/lsm-help-text.php:29
|
5144 |
msgid "Turn On|Turn Off:"
|
5145 |
msgstr ""
|
5146 |
|
5147 |
+
#: admin/login/login.php:462
|
5148 |
msgid "Login Security On"
|
5149 |
msgstr ""
|
5150 |
|
5151 |
+
#: admin/login/login.php:463
|
5152 |
msgid "Login Security Off"
|
5153 |
msgstr ""
|
5154 |
|
5155 |
+
#: admin/login/login.php:464
|
5156 |
msgid "Login Security Off|Use Password Reset Option ONLY"
|
5157 |
msgstr ""
|
5158 |
|
5159 |
+
#: admin/login/login.php:469
|
5160 |
msgid "Logging Options:"
|
5161 |
msgstr ""
|
5162 |
|
5163 |
+
#: admin/login/login.php:471
|
5164 |
msgid "Log Only Account Lockouts"
|
5165 |
msgstr ""
|
5166 |
|
5167 |
+
#: admin/login/login.php:472
|
5168 |
msgid "Log All Account Logins"
|
5169 |
msgstr ""
|
5170 |
|
5171 |
+
#: admin/login/login.php:477
|
5172 |
msgid "Error Messages:"
|
5173 |
msgstr ""
|
5174 |
|
5175 |
+
#: admin/login/login.php:479
|
5176 |
msgid "Standard WP Login Errors"
|
5177 |
msgstr ""
|
5178 |
|
5179 |
+
#: admin/login/login.php:480
|
5180 |
msgid "User|Pass Invalid Entry Error"
|
5181 |
msgstr ""
|
5182 |
|
5183 |
+
#: admin/login/login.php:481
|
5184 |
msgid "User|Pass|Lock Invalid Entry Error"
|
5185 |
msgstr ""
|
5186 |
|
5187 |
+
#: admin/login/login.php:486
|
5188 |
msgid "Attempts Remaining:"
|
5189 |
msgstr ""
|
5190 |
|
5191 |
+
#: admin/login/login.php:488
|
5192 |
msgid "Show Login Attempts Remaining"
|
5193 |
msgstr ""
|
5194 |
|
5195 |
+
#: admin/login/login.php:489
|
5196 |
msgid "Do Not Show Login Attempts Remaining"
|
5197 |
msgstr ""
|
5198 |
|
5199 |
+
#: admin/login/login.php:494
|
5200 |
msgid "Password Reset:"
|
5201 |
msgstr ""
|
5202 |
|
5203 |
+
#: admin/login/login.php:496
|
5204 |
msgid "Enable Password Reset"
|
5205 |
msgstr ""
|
5206 |
|
5207 |
+
#: admin/login/login.php:497
|
5208 |
msgid "Disable Password Reset Frontend Only"
|
5209 |
msgstr ""
|
5210 |
|
5211 |
+
#: admin/login/login.php:498
|
5212 |
msgid "Disable Password Reset Frontend & Backend"
|
5213 |
msgstr ""
|
5214 |
|
5215 |
+
#: admin/login/login.php:503
|
5216 |
msgid "Sort DB Rows:"
|
5217 |
msgstr ""
|
5218 |
|
5219 |
+
#: admin/login/login.php:505
|
5220 |
msgid "Ascending - Show Oldest Login First"
|
5221 |
msgstr ""
|
5222 |
|
5223 |
+
#: admin/login/login.php:506
|
5224 |
msgid "Descending - Show Newest Login First"
|
5225 |
msgstr ""
|
5226 |
|
5227 |
+
#: admin/login/login.php:519
|
5228 |
msgid ""
|
5229 |
"Clicking OK will Export (copy) the Login Security Table into the lsm-master."
|
5230 |
"csv file, which you can then download to your computer by clicking the "
|
5232 |
"success message."
|
5233 |
msgstr ""
|
5234 |
|
5235 |
+
#: admin/login/login.php:519
|
5236 |
msgid "Click OK to Export the Login Security Table or click Cancel."
|
5237 |
msgstr ""
|
5238 |
|
5239 |
+
#: admin/login/login.php:547
|
5240 |
msgid " out of "
|
5241 |
msgstr ""
|
5242 |
|
5243 |
+
#: admin/login/login.php:547
|
5244 |
msgid " Database Rows are currently being displayed"
|
5245 |
msgstr ""
|
5246 |
|
5247 |
+
#: admin/login/login.php:550
|
5248 |
msgid "Total number of Database Rows is: "
|
5249 |
msgstr ""
|
5250 |
|
5251 |
+
#: admin/login/login.php:573 admin/login/login.php:674
|
5252 |
msgid "Login Status"
|
5253 |
msgstr ""
|
5254 |
|
5255 |
+
#: admin/login/login.php:574 admin/login/login.php:603
|
5256 |
+
#: admin/login/login.php:675 admin/login/login.php:704
|
5257 |
msgid "Lock"
|
5258 |
msgstr ""
|
5259 |
|
5260 |
+
#: admin/login/login.php:575 admin/login/login.php:604
|
5261 |
+
#: admin/login/login.php:676 admin/login/login.php:705
|
5262 |
msgid "Unlock"
|
5263 |
msgstr ""
|
5264 |
|
5265 |
+
#: admin/login/login.php:577 admin/login/login.php:678
|
5266 |
msgid "User ID"
|
5267 |
msgstr ""
|
5268 |
|
5269 |
+
#: admin/login/login.php:578 admin/login/login.php:679
|
5270 |
msgid "Username"
|
5271 |
msgstr ""
|
5272 |
|
5273 |
+
#: admin/login/login.php:579 admin/login/login.php:680
|
5274 |
msgid "Display Name"
|
5275 |
msgstr ""
|
5276 |
|
5277 |
+
#: admin/login/login.php:580 admin/login/login.php:681
|
5278 |
msgid "Email"
|
5279 |
msgstr ""
|
5280 |
|
5281 |
+
#: admin/login/login.php:581 admin/login/login.php:682
|
5282 |
msgid "Role"
|
5283 |
msgstr ""
|
5284 |
|
5285 |
+
#: admin/login/login.php:582 admin/login/login.php:683
|
5286 |
msgid "Login Time"
|
5287 |
msgstr ""
|
5288 |
|
5289 |
+
#: admin/login/login.php:583 admin/login/login.php:684
|
5290 |
msgid "Lockout Expires"
|
5291 |
msgstr ""
|
5292 |
|
5293 |
+
#: admin/login/login.php:584 admin/login/login.php:685
|
5294 |
msgid "IP Address"
|
5295 |
msgstr ""
|
5296 |
|
5297 |
+
#: admin/login/login.php:585 admin/login/login.php:686
|
5298 |
msgid "Hostname"
|
5299 |
msgstr ""
|
5300 |
|
5301 |
+
#: admin/login/login.php:586 admin/login/login.php:687
|
5302 |
msgid "Request URI"
|
5303 |
msgstr ""
|
5304 |
|
5305 |
+
#: admin/login/login.php:615 admin/login/login.php:716
|
5306 |
msgid "NA"
|
5307 |
msgstr ""
|
5308 |
|
5309 |
+
#: admin/login/login.php:628 admin/login/login.php:729
|
5310 |
msgid "No Logins|Locked"
|
5311 |
msgstr ""
|
5312 |
|
5313 |
+
#: admin/login/login.php:645 admin/login/login.php:746
|
5314 |
msgid ""
|
5315 |
"Locking and Unlocking a User is reversible, but Deleting a User is not.\\n"
|
5316 |
"\\n-------------------------------------------------------------\\n\\nWhen "
|
5323 |
"OK to proceed or click Cancel"
|
5324 |
msgstr ""
|
5325 |
|
5326 |
+
#: admin/login/login.php:645 admin/login/login.php:746
|
5327 |
+
#: admin/mscan/mscan.php:1804 admin/mscan/mscan.php:2077
|
5328 |
msgid "Clear|Refresh"
|
5329 |
msgstr ""
|
5330 |
|
5331 |
+
#: admin/login/login.php:808
|
5332 |
msgid ""
|
5333 |
"The Setup Wizard Go Daddy \"Managed WordPress Hosting\" option is set to Yes."
|
5334 |
msgstr ""
|
5335 |
|
5336 |
+
#: admin/login/login.php:808
|
5337 |
msgid ""
|
5338 |
"If you do not have Go Daddy \"Managed WordPress Hosting\" then change the Go "
|
5339 |
"Daddy \"Managed WordPress Hosting\" Setup Wizard option to No."
|
5340 |
msgstr ""
|
5341 |
|
5342 |
+
#: admin/login/login.php:846 admin/login/login.php:1385
|
5343 |
+
#: admin/login/login.php:1742
|
5344 |
msgid "Save Options"
|
5345 |
msgstr ""
|
5346 |
|
5347 |
+
#: admin/login/login.php:890
|
5348 |
msgid ""
|
5349 |
"Error: Sorry, JavaScript is not allowed in the JTC-Lite text boxes. Only "
|
5350 |
"HTML, CSS and regular text are allowed."
|
5351 |
msgstr ""
|
5352 |
|
5353 |
+
#: admin/login/login.php:890 admin/maintenance/maintenance.php:298
|
5354 |
msgid "JavaScript Matches:"
|
5355 |
msgstr ""
|
5356 |
|
5357 |
+
#: admin/login/login.php:976
|
5358 |
msgid "JTC-Lite Settings Saved."
|
5359 |
msgstr ""
|
5360 |
|
5361 |
+
#: admin/login/login.php:1022
|
5362 |
msgid "JTC CAPTCHA:"
|
5363 |
msgstr ""
|
5364 |
|
5365 |
+
#: admin/login/login.php:1024
|
5366 |
msgid "jtc"
|
5367 |
msgstr ""
|
5368 |
|
5369 |
+
#: admin/login/login.php:1027
|
5370 |
msgid "JTC ToolTip:"
|
5371 |
msgstr ""
|
5372 |
|
5373 |
+
#: admin/login/login.php:1029
|
5374 |
msgid "Type/Enter: jtc. Enter a blank space for no text (Spacebar Key)"
|
5375 |
msgstr ""
|
5376 |
|
5377 |
+
#: admin/login/login.php:1032
|
5378 |
msgid "JTC Title|Text:"
|
5379 |
msgstr ""
|
5380 |
|
5381 |
+
#: admin/login/login.php:1040 admin/login/login.php:1050
|
5382 |
msgid " Bold"
|
5383 |
msgstr ""
|
5384 |
|
5385 |
+
#: admin/login/login.php:1044
|
5386 |
msgid "JTC Title|Text After:"
|
5387 |
msgstr ""
|
5388 |
|
5389 |
+
#: admin/login/login.php:1051
|
5390 |
msgid "Example: "
|
5391 |
msgstr ""
|
5392 |
|
5393 |
+
#: admin/login/login.php:1052
|
5394 |
msgid "Required *"
|
5395 |
msgstr ""
|
5396 |
|
5397 |
+
#: admin/login/login.php:1053
|
5398 |
msgid " or just: "
|
5399 |
msgstr ""
|
5400 |
|
5401 |
+
#: admin/login/login.php:1054
|
5402 |
msgid "*"
|
5403 |
msgstr ""
|
5404 |
|
5405 |
+
#: admin/login/login.php:1061
|
5406 |
msgid "JTC Logging:"
|
5407 |
msgstr ""
|
5408 |
|
5409 |
+
#: admin/login/login.php:1063
|
5410 |
msgid "JTC Logging Off"
|
5411 |
msgstr ""
|
5412 |
|
5413 |
+
#: admin/login/login.php:1066
|
5414 |
msgid "Logged in the Security Log (BPS Pro Only)"
|
5415 |
msgstr ""
|
5416 |
|
5417 |
+
#: admin/login/login.php:1090
|
5418 |
msgid " Enable JTC for WooCommerce (BPS Pro Only)"
|
5419 |
msgstr ""
|
5420 |
|
5421 |
+
#: admin/login/login.php:1093
|
5422 |
msgid "Enable|Disable JTC For These Forms: "
|
5423 |
msgstr ""
|
5424 |
|
5425 |
+
#: admin/login/login.php:1094 admin/login/login.php:1105
|
5426 |
msgid "Check to Enable. Uncheck to Disable."
|
5427 |
msgstr ""
|
5428 |
|
5429 |
+
#: admin/login/login.php:1095
|
5430 |
msgid " Login Form"
|
5431 |
msgstr ""
|
5432 |
|
5433 |
+
#: admin/login/login.php:1096
|
5434 |
msgid " Register Form (BPS Pro Only)"
|
5435 |
msgstr ""
|
5436 |
|
5437 |
+
#: admin/login/login.php:1097
|
5438 |
msgid " Lost Password Form (BPS Pro Only)"
|
5439 |
msgstr ""
|
5440 |
|
5441 |
+
#: admin/login/login.php:1098
|
5442 |
msgid " Comment Form (BPS Pro Only)"
|
5443 |
msgstr ""
|
5444 |
|
5445 |
+
#: admin/login/login.php:1099
|
5446 |
msgid " Multisite Register Form (BPS Pro Only)"
|
5447 |
msgstr ""
|
5448 |
|
5449 |
+
#: admin/login/login.php:1100
|
5450 |
msgid " BuddyPress Register Form (BPS Pro Only)"
|
5451 |
msgstr ""
|
5452 |
|
5453 |
+
#: admin/login/login.php:1101
|
5454 |
msgid " BuddyPress Sidebar Login Form (BPS Pro Only)"
|
5455 |
msgstr ""
|
5456 |
|
5457 |
+
#: admin/login/login.php:1103
|
5458 |
msgid "Comment Form: (BPS Pro Only)"
|
5459 |
msgstr ""
|
5460 |
|
5461 |
+
#: admin/login/login.php:1104
|
5462 |
msgid ""
|
5463 |
"Enable|Disable JTC For These Registered/Logged In User Roles (BPS Pro Only): "
|
5464 |
msgstr ""
|
5465 |
|
5466 |
+
#: admin/login/login.php:1107 admin/login/login.php:1593
|
5467 |
+
#: admin/login/login.php:1866
|
5468 |
msgid " Administrator"
|
5469 |
msgstr ""
|
5470 |
|
5471 |
+
#: admin/login/login.php:1108 admin/login/login.php:1594
|
5472 |
+
#: admin/login/login.php:1867
|
5473 |
msgid " Editor"
|
5474 |
msgstr ""
|
5475 |
|
5476 |
+
#: admin/login/login.php:1109 admin/login/login.php:1595
|
5477 |
+
#: admin/login/login.php:1868
|
5478 |
msgid " Author"
|
5479 |
msgstr ""
|
5480 |
|
5481 |
+
#: admin/login/login.php:1110 admin/login/login.php:1596
|
5482 |
+
#: admin/login/login.php:1869
|
5483 |
msgid " Contributor"
|
5484 |
msgstr ""
|
5485 |
|
5486 |
+
#: admin/login/login.php:1111 admin/login/login.php:1597
|
5487 |
+
#: admin/login/login.php:1870
|
5488 |
msgid " Subscriber"
|
5489 |
msgstr ""
|
5490 |
|
5491 |
+
#: admin/login/login.php:1137
|
5492 |
msgid "Login Form: CAPTCHA Error message"
|
5493 |
msgstr ""
|
5494 |
|
5495 |
+
#: admin/login/login.php:1140
|
5496 |
msgid "Comment Form: CAPTCHA Error message (BPS Pro Only)"
|
5497 |
msgstr ""
|
5498 |
|
5499 |
+
#: admin/login/login.php:1143 admin/login/lsm-help-text.php:26
|
5500 |
msgid "Comment Form: CSS Styling (BPS Pro Only)"
|
5501 |
msgstr ""
|
5502 |
|
5503 |
+
#: admin/login/login.php:1144
|
5504 |
msgid ""
|
5505 |
"Comment Form Label (BPS Pro Only): <i>The JTC Title|Text above the Form "
|
5506 |
"Input text box</i>"
|
5507 |
msgstr ""
|
5508 |
|
5509 |
+
#: admin/login/login.php:1146
|
5510 |
msgid ""
|
5511 |
"Comment Form Input Text Box (BPS Pro Only): <i>The JTC CAPTCHA Form Input "
|
5512 |
"text box</i>"
|
5513 |
msgstr ""
|
5514 |
|
5515 |
+
#: admin/login/login.php:1149
|
5516 |
msgid ""
|
5517 |
"If you see an error or are unable to save your JTC option settings then "
|
5518 |
"click the Encrypt JTC Code button first and then click the Save Options "
|
5519 |
"button. Mouse over the question mark image to the right for help info."
|
5520 |
msgstr ""
|
5521 |
|
5522 |
+
#: admin/login/login.php:1149
|
5523 |
msgid ""
|
5524 |
"If your web host currently has ModSecurity installed or installs ModSecurity "
|
5525 |
"at a later time then ModSecurity will prevent you from saving your JTC "
|
5527 |
"Encrypt JTC Code button."
|
5528 |
msgstr ""
|
5529 |
|
5530 |
+
#: admin/login/login.php:1149
|
5531 |
msgid ""
|
5532 |
"If you click the Encrypt JTC Code button and then want to edit your CSS code "
|
5533 |
"again click the Decrypt JTC Code button. After you are done editing click "
|
5534 |
"the Encrypt JTC Code button before clicking the Save Options button."
|
5535 |
msgstr ""
|
5536 |
|
5537 |
+
#: admin/login/login.php:1149
|
5538 |
msgid ""
|
5539 |
"Click the JTC Anti-Spam|Anti-Hacker Question Mark help button for more help "
|
5540 |
"info."
|
5541 |
msgstr ""
|
5542 |
|
5543 |
+
#: admin/login/login.php:1151 admin/login/login.php:1625
|
5544 |
+
#: admin/login/login.php:1888 admin/login/login.php:2028
|
5545 |
+
#: admin/security-log/security-log.php:445
|
5546 |
msgid "Click OK to Proceed or click Cancel."
|
5547 |
msgstr ""
|
5548 |
|
5549 |
+
#: admin/login/login.php:1361
|
5550 |
msgid "ISL and ACE Forum Topic"
|
5551 |
msgstr ""
|
5552 |
|
5553 |
+
#: admin/login/login.php:1365
|
5554 |
msgid "The Help & FAQ tab pages contain help links."
|
5555 |
msgstr ""
|
5556 |
|
5557 |
+
#: admin/login/login.php:1478
|
5558 |
msgid "Settings Saved. ISL has been turned On."
|
5559 |
msgstr ""
|
5560 |
|
5561 |
+
#: admin/login/login.php:1484
|
5562 |
msgid "Settings Saved. ISL has been turned Off."
|
5563 |
msgstr ""
|
5564 |
|
5565 |
+
#: admin/login/login.php:1517
|
5566 |
msgid "Idle Session Logout (ISL) Settings"
|
5567 |
msgstr ""
|
5568 |
|
5569 |
+
#: admin/login/login.php:1524
|
5570 |
msgid "ISL Off"
|
5571 |
msgstr ""
|
5572 |
|
5573 |
+
#: admin/login/login.php:1525
|
5574 |
msgid "ISL On"
|
5575 |
msgstr ""
|
5576 |
|
5577 |
+
#: admin/login/login.php:1531 admin/login/lsm-help-text.php:29
|
5578 |
msgid "Idle Session Logout Time in Minutes:"
|
5579 |
msgstr ""
|
5580 |
|
5581 |
+
#: admin/login/login.php:1537 admin/login/lsm-help-text.php:29
|
5582 |
msgid "Idle Session Logout Page URL:"
|
5583 |
msgstr ""
|
5584 |
|
5585 |
+
#: admin/login/login.php:1543 admin/login/lsm-help-text.php:29
|
5586 |
msgid "Idle Session Logout Page Login URL:"
|
5587 |
msgstr ""
|
5588 |
|
5589 |
+
#: admin/login/login.php:1544
|
5590 |
msgid ""
|
5591 |
"Enter/Type: \"No\" (without quotes) if you do not want a Login URL displayed."
|
5592 |
msgstr ""
|
5593 |
|
5594 |
+
#: admin/login/login.php:1550 admin/login/lsm-help-text.php:29
|
5595 |
msgid "Idle Session Logout Exclude URLs|URIs:"
|
5596 |
msgstr ""
|
5597 |
|
5598 |
+
#: admin/login/login.php:1551
|
5599 |
msgid "Enter URIs separated by a comma and a space: /some-post/, /some-page/"
|
5600 |
msgstr ""
|
5601 |
|
5602 |
+
#: admin/login/login.php:1558 admin/login/lsm-help-text.php:29
|
5603 |
msgid "Idle Session Logout Page Custom Message:"
|
5604 |
msgstr ""
|
5605 |
|
5606 |
+
#: admin/login/login.php:1565 admin/login/lsm-help-text.php:29
|
5607 |
msgid "Idle Session Logout Page Custom CSS Style:"
|
5608 |
msgstr ""
|
5609 |
|
5610 |
+
#: admin/login/login.php:1582 admin/login/login.php:1854
|
5611 |
#: admin/login/lsm-help-text.php:29
|
5612 |
msgid "User Account Exceptions:"
|
5613 |
msgstr ""
|
5614 |
|
5615 |
+
#: admin/login/login.php:1583 admin/login/login.php:1855
|
5616 |
msgid ""
|
5617 |
"Enter User Account names separated by a comma and a space: johnDoe, janeDoe"
|
5618 |
msgstr ""
|
5619 |
|
5620 |
+
#: admin/login/login.php:1584
|
5621 |
msgid "Idle Session Logout Time Will Not Be Applied For These User Accounts."
|
5622 |
msgstr ""
|
5623 |
|
5624 |
+
#: admin/login/login.php:1590
|
5625 |
msgid "Enable|Disable Idle Session Logouts For These User Roles: "
|
5626 |
msgstr ""
|
5627 |
|
5628 |
+
#: admin/login/login.php:1591 admin/login/login.php:1863
|
5629 |
msgid ""
|
5630 |
"Check to Enable. Uncheck to Disable. See the Question Mark help button for "
|
5631 |
"details."
|
5632 |
msgstr ""
|
5633 |
|
5634 |
+
#: admin/login/login.php:1619
|
5635 |
msgid "Enable|Disable Idle Session Logouts For TinyMCE Editors: "
|
5636 |
msgstr ""
|
5637 |
|
5638 |
+
#: admin/login/login.php:1620 admin/login/login.php:1848
|
5639 |
msgid ""
|
5640 |
"Check to Disable. Uncheck to Enable. See the Question Mark help button for "
|
5641 |
"details."
|
5642 |
msgstr ""
|
5643 |
|
5644 |
+
#: admin/login/login.php:1621
|
5645 |
msgid " Enable|Disable ISL For TinyMCE Editor"
|
5646 |
msgstr ""
|
5647 |
|
5648 |
+
#: admin/login/login.php:1623
|
5649 |
msgid ""
|
5650 |
"If you see an error or are unable to save your ISL option settings then "
|
5651 |
"click the Encrypt ISL Code button first and then click the Save Options "
|
5652 |
"button. Mouse over the question mark image to the right for help info."
|
5653 |
msgstr ""
|
5654 |
|
5655 |
+
#: admin/login/login.php:1623
|
5656 |
msgid ""
|
5657 |
"If your web host currently has ModSecurity installed or installs ModSecurity "
|
5658 |
"at a later time then ModSecurity will prevent you from saving your ISL "
|
5660 |
"Encrypt ISL Code button."
|
5661 |
msgstr ""
|
5662 |
|
5663 |
+
#: admin/login/login.php:1623
|
5664 |
msgid ""
|
5665 |
"If you click the Encrypt ISL Code button and then want to edit your CSS code "
|
5666 |
"again click the Decrypt ISL Code button. After you are done editing click "
|
5667 |
"the Encrypt ISL Code button before clicking the Save Options button."
|
5668 |
msgstr ""
|
5669 |
|
5670 |
+
#: admin/login/login.php:1623
|
5671 |
msgid ""
|
5672 |
"Click the Idle Session Logout|Auth Cookie Expiration Question Mark help "
|
5673 |
"button for more help info."
|
5674 |
msgstr ""
|
5675 |
|
5676 |
+
#: admin/login/login.php:1730
|
5677 |
msgid "WordPress Authentication Cookie Expiration (ACE) Settings"
|
5678 |
msgstr ""
|
5679 |
|
5680 |
+
#: admin/login/login.php:1793
|
5681 |
msgid "Settings Saved. ACE has been turned On."
|
5682 |
msgstr ""
|
5683 |
|
5684 |
+
#: admin/login/login.php:1799
|
5685 |
msgid "Settings Saved. ACE has been turned Off."
|
5686 |
msgstr ""
|
5687 |
|
5688 |
+
#: admin/login/login.php:1826
|
5689 |
msgid "ACE Off"
|
5690 |
msgstr ""
|
5691 |
|
5692 |
+
#: admin/login/login.php:1827
|
5693 |
msgid "ACE On"
|
5694 |
msgstr ""
|
5695 |
|
5696 |
+
#: admin/login/login.php:1833 admin/login/lsm-help-text.php:29
|
5697 |
msgid "Auth Cookie Expiration Time in Minutes:"
|
5698 |
msgstr ""
|
5699 |
|
5700 |
+
#: admin/login/login.php:1834
|
5701 |
msgid "WP Default setting is 2880 Minutes/2 Days:"
|
5702 |
msgstr ""
|
5703 |
|
5704 |
+
#: admin/login/login.php:1840 admin/login/lsm-help-text.php:29
|
5705 |
msgid "Remember Me Auth Cookie Expiration Time in Minutes:"
|
5706 |
msgstr ""
|
5707 |
|
5708 |
+
#: admin/login/login.php:1841
|
5709 |
msgid "WP Default setting is 20160 Minutes/14 Days:"
|
5710 |
msgstr ""
|
5711 |
|
5712 |
+
#: admin/login/login.php:1847 admin/login/lsm-help-text.php:29
|
5713 |
msgid "Enable|Disable Remember Me Checkbox:"
|
5714 |
msgstr ""
|
5715 |
|
5716 |
+
#: admin/login/login.php:1849
|
5717 |
msgid " Disable & do not display the Remember Me checkbox"
|
5718 |
msgstr ""
|
5719 |
|
5720 |
+
#: admin/login/login.php:1856
|
5721 |
msgid "Auth Cookie Expiration Time Will Not Be Applied To These User Accounts."
|
5722 |
msgstr ""
|
5723 |
|
5724 |
+
#: admin/login/login.php:1862
|
5725 |
msgid "Enable|Disable Auth Cookie Expiration Time For These User Roles: "
|
5726 |
msgstr ""
|
5727 |
|
5728 |
+
#: admin/login/login.php:1962
|
5729 |
msgid "Settings Saved. FSP is turned On."
|
5730 |
msgstr ""
|
5731 |
|
5732 |
+
#: admin/login/login.php:1968
|
5733 |
msgid "Settings Saved. FSP is turned Off."
|
5734 |
msgstr ""
|
5735 |
|
5736 |
+
#: admin/login/login.php:1994 admin/login/lsm-help-text.php:32
|
5737 |
msgid "Turn FSP On|Turn FSP Off:"
|
5738 |
msgstr ""
|
5739 |
|
5740 |
+
#: admin/login/login.php:1996
|
5741 |
msgid "FSP Off"
|
5742 |
msgstr ""
|
5743 |
|
5744 |
+
#: admin/login/login.php:1997
|
5745 |
msgid "FSP On"
|
5746 |
msgstr ""
|
5747 |
|
5748 |
+
#: admin/login/login.php:2002 admin/login/lsm-help-text.php:32
|
5749 |
msgid "Password Character Length:"
|
5750 |
msgstr ""
|
5751 |
|
5752 |
+
#: admin/login/login.php:2004
|
5753 |
msgid "Example: 12"
|
5754 |
msgstr ""
|
5755 |
|
5756 |
+
#: admin/login/login.php:2010
|
5757 |
msgid "Password Criteria Requirements: "
|
5758 |
msgstr ""
|
5759 |
|
5760 |
+
#: admin/login/login.php:2011
|
5761 |
msgid "Check to require. Uncheck to remove requirement."
|
5762 |
msgstr ""
|
5763 |
|
5764 |
+
#: admin/login/login.php:2012
|
5765 |
msgid " At least 1 lowercase letter"
|
5766 |
msgstr ""
|
5767 |
|
5768 |
+
#: admin/login/login.php:2013
|
5769 |
msgid " At least 1 uppercase letter"
|
5770 |
msgstr ""
|
5771 |
|
5772 |
+
#: admin/login/login.php:2014
|
5773 |
msgid " At least 1 number"
|
5774 |
msgstr ""
|
5775 |
|
5776 |
+
#: admin/login/login.php:2015
|
5777 |
msgid " At least 1 special character"
|
5778 |
msgstr ""
|
5779 |
|
5780 |
+
#: admin/login/login.php:2022 admin/login/lsm-help-text.php:32
|
5781 |
msgid "Displayed Message/Error Message:"
|
5782 |
msgstr ""
|
5783 |
|
5970 |
"be displayed. "
|
5971 |
msgstr ""
|
5972 |
|
5973 |
+
#: admin/login/lsm-help-text.php:10 admin/maintenance/maintenance.php:650
|
5974 |
#: includes/hud-dismiss-functions.php:358
|
5975 |
#: includes/hud-dismiss-functions.php:402
|
5976 |
msgid "CAUTION: "
|
6695 |
"Forms/pages or use the existing default FSP message."
|
6696 |
msgstr ""
|
6697 |
|
6698 |
+
#: admin/maintenance/maintenance.php:214 admin/maintenance/maintenance.php:2241
|
6699 |
msgid "Maintenance Mode Guide"
|
6700 |
msgstr ""
|
6701 |
|
6702 |
+
#: admin/maintenance/maintenance.php:216
|
6703 |
msgid ""
|
6704 |
"Create/add whatever messages, images, videos, etc. you want to display to "
|
6705 |
"website visitors with the MMode Editor, select your MMode options/settings, "
|
6708 |
"options/settings."
|
6709 |
msgstr ""
|
6710 |
|
6711 |
+
#: admin/maintenance/maintenance.php:216
|
6712 |
msgid ""
|
6713 |
"For more extensive help info, CSS, HTML code examples, Image & Video "
|
6714 |
"embedding code examples to add in the MMode Editor see Forum Help Links at "
|
6715 |
"the top of this Question Mark help window."
|
6716 |
msgstr ""
|
6717 |
|
6718 |
+
#: admin/maintenance/maintenance.php:216 admin/maintenance/maintenance.php:615
|
6719 |
msgid ""
|
6720 |
"Maintenance Mode Text, CSS Style Code, Images, Videos Displayed To Website "
|
6721 |
"Visitors:"
|
6722 |
msgstr ""
|
6723 |
|
6724 |
+
#: admin/maintenance/maintenance.php:216
|
6725 |
msgid ""
|
6726 |
"This is a standard WordPress TinyMCE WYSIWYG editor that has a Visual Editor "
|
6727 |
"and a Text Editor for adding CSS or HTML code. Enter plain text, CSS, HTML "
|
6733 |
"Save Options button to save your edits."
|
6734 |
msgstr ""
|
6735 |
|
6736 |
+
#: admin/maintenance/maintenance.php:216
|
6737 |
msgid "Enable Countdown Timer:"
|
6738 |
msgstr ""
|
6739 |
|
6740 |
+
#: admin/maintenance/maintenance.php:216
|
6741 |
msgid ""
|
6742 |
"Check this checkbox to enable a javascript Countdown Timer that will be "
|
6743 |
"displayed to visitors. When the Countdown Timer reaches 0/has completed your "
|
6746 |
"off Maintenance Mode when the Countdown Timer reaches 0/has completed."
|
6747 |
msgstr ""
|
6748 |
|
6749 |
+
#: admin/maintenance/maintenance.php:216 admin/maintenance/maintenance.php:629
|
6750 |
msgid "Countdown Timer Text Color:"
|
6751 |
msgstr ""
|
6752 |
|
6753 |
+
#: admin/maintenance/maintenance.php:216
|
6754 |
msgid "Select the text color for the Countdown Timer."
|
6755 |
msgstr ""
|
6756 |
|
6757 |
+
#: admin/maintenance/maintenance.php:216 admin/maintenance/maintenance.php:637
|
6758 |
msgid "Maintenance Mode Time (in Minutes):"
|
6759 |
msgstr ""
|
6760 |
|
6761 |
+
#: admin/maintenance/maintenance.php:216
|
6762 |
msgid ""
|
6763 |
"Enter the amount of time that you want to put your site into Maintenance "
|
6764 |
"Mode in minutes. Example: 10 = 10 minutes, 180 = 3 hours, 1440 = 24 hours, "
|
6765 |
"4320 = 3 days."
|
6766 |
msgstr ""
|
6767 |
|
6768 |
+
#: admin/maintenance/maintenance.php:216
|
6769 |
msgid ""
|
6770 |
"Header Retry-After (enter the same time as Maintenance Mode Time above):"
|
6771 |
msgstr ""
|
6772 |
|
6773 |
+
#: admin/maintenance/maintenance.php:216
|
6774 |
msgid ""
|
6775 |
"This is the amount of time that you are telling Search Engines to wait "
|
6776 |
"before visiting your website again. Enter the same time in minutes that you "
|
6777 |
"entered for Maintenance Mode Time."
|
6778 |
msgstr ""
|
6779 |
|
6780 |
+
#: admin/maintenance/maintenance.php:216
|
6781 |
msgid "Enable FrontEnd Maintenance Mode:"
|
6782 |
msgstr ""
|
6783 |
|
6784 |
+
#: admin/maintenance/maintenance.php:216
|
6785 |
msgid ""
|
6786 |
"Check this checkbox to enable FrontEnd Maintenance Mode. When you Turn On "
|
6787 |
"FrontEnd Maintenance Mode your website Maintenance Mode page will be "
|
6792 |
"be locked out of your WordPress Dashboard."
|
6793 |
msgstr ""
|
6794 |
|
6795 |
+
#: admin/maintenance/maintenance.php:216
|
6796 |
msgid "Enable BackEnd Maintenance Mode:"
|
6797 |
msgstr ""
|
6798 |
|
6799 |
+
#: admin/maintenance/maintenance.php:216
|
6800 |
msgid ""
|
6801 |
"Check this checkbox to enable BackEnd Maintenance Mode. Be sure to enter the "
|
6802 |
"Your IP address/the Recommended IP address in the Maintenance Mode IP "
|
6808 |
"your WordPress Dashboard."
|
6809 |
msgstr ""
|
6810 |
|
6811 |
+
#: admin/maintenance/maintenance.php:216 admin/maintenance/maintenance.php:661
|
6812 |
msgid "Maintenance Mode IP Address Whitelist Text Box:"
|
6813 |
msgstr ""
|
6814 |
|
6815 |
+
#: admin/maintenance/maintenance.php:216
|
6816 |
msgid ""
|
6817 |
"Enter The IP Address That Can View The Website Normally (not in Maintenance "
|
6818 |
"Mode):"
|
6819 |
msgstr ""
|
6820 |
|
6821 |
+
#: admin/maintenance/maintenance.php:216
|
6822 |
msgid ""
|
6823 |
"Enter Multiple IP addresses separated by a comma and a single space. "
|
6824 |
"Example: 100.99.88.77, 200.66.55.44, 44.33.22.1 It is recommended that you "
|
6830 |
"octets or your current IP address to whitelist your IP address."
|
6831 |
msgstr ""
|
6832 |
|
6833 |
+
#: admin/maintenance/maintenance.php:216 admin/maintenance/maintenance.php:668
|
6834 |
msgid "Background Images:"
|
6835 |
msgstr ""
|
6836 |
|
6837 |
+
#: admin/maintenance/maintenance.php:216
|
6838 |
msgid ""
|
6839 |
"Select a background image that you want to use. BPS includes 20 background "
|
6840 |
"images and 15 center images (text box images) that you can mix and match to "
|
6841 |
"your design/color scheme preference."
|
6842 |
msgstr ""
|
6843 |
|
6844 |
+
#: admin/maintenance/maintenance.php:216 admin/maintenance/maintenance.php:693
|
6845 |
msgid "Center Images:"
|
6846 |
msgstr ""
|
6847 |
|
6848 |
+
#: admin/maintenance/maintenance.php:216
|
6849 |
msgid ""
|
6850 |
"Select a center image that you want to use. BPS includes 20 background "
|
6851 |
"images and 15 center images (text box images) that you can mix and match to "
|
6852 |
"your design/color scheme preference."
|
6853 |
msgstr ""
|
6854 |
|
6855 |
+
#: admin/maintenance/maintenance.php:216 admin/maintenance/maintenance.php:713
|
6856 |
msgid "Background Colors (If not using a Background Image):"
|
6857 |
msgstr ""
|
6858 |
|
6859 |
+
#: admin/maintenance/maintenance.php:216
|
6860 |
msgid ""
|
6861 |
"Select a background color that you want to use. If you do not want to use a "
|
6862 |
"background image then you can instead choose a background color."
|
6863 |
msgstr ""
|
6864 |
|
6865 |
+
#: admin/maintenance/maintenance.php:216
|
6866 |
msgid "Display Visitor IP Address:"
|
6867 |
msgstr ""
|
6868 |
|
6869 |
+
#: admin/maintenance/maintenance.php:216
|
6870 |
msgid "Check this checkbox to display the website visitor's IP addresses."
|
6871 |
msgstr ""
|
6872 |
|
6873 |
+
#: admin/maintenance/maintenance.php:216 admin/maintenance/maintenance.php:723
|
6874 |
msgid "Display Admin|Login Link"
|
6875 |
msgstr ""
|
6876 |
|
6877 |
+
#: admin/maintenance/maintenance.php:216
|
6878 |
msgid ""
|
6879 |
"Check this checkbox to display a Login link that points to your wp-admin "
|
6880 |
"folder/Login page."
|
6881 |
msgstr ""
|
6882 |
|
6883 |
+
#: admin/maintenance/maintenance.php:216
|
6884 |
msgid "Display Dashboard Reminder Message when site is in Maintenance Mode:"
|
6885 |
msgstr ""
|
6886 |
|
6887 |
+
#: admin/maintenance/maintenance.php:216
|
6888 |
msgid ""
|
6889 |
"Check this checkbox to display a WordPress Dashboard Reminder Notice that "
|
6890 |
"your website is in Maintenance Mode."
|
6891 |
msgstr ""
|
6892 |
|
6893 |
+
#: admin/maintenance/maintenance.php:216
|
6894 |
msgid "Enable Visitor Logging:"
|
6895 |
msgstr ""
|
6896 |
|
6897 |
+
#: admin/maintenance/maintenance.php:216
|
6898 |
msgid ""
|
6899 |
"Check this checkbox to enable visitor logging. Logs all visitors to your "
|
6900 |
"site while your site is in Maintenance Mode. Log entries are created in the "
|
6901 |
"BPS Security Log file. "
|
6902 |
msgstr ""
|
6903 |
|
6904 |
+
#: admin/maintenance/maintenance.php:217
|
6905 |
msgid ""
|
6906 |
"Send Email Reminder when Maintenance Mode Countdown Timer has completed:"
|
6907 |
msgstr ""
|
6908 |
|
6909 |
+
#: admin/maintenance/maintenance.php:217
|
6910 |
msgid ""
|
6911 |
"Check this checkbox to enable the javascript Countdown Timer to send you an "
|
6912 |
"email reminder when the Countdown Timer reaches 0/is completed. More "
|
6918 |
"the Countdown Timer reaches 0/has completed."
|
6919 |
msgstr ""
|
6920 |
|
6921 |
+
#: admin/maintenance/maintenance.php:217
|
6922 |
msgid "Testing the Countdown Timer Send Email Option:"
|
6923 |
msgstr ""
|
6924 |
|
6925 |
+
#: admin/maintenance/maintenance.php:217
|
6926 |
msgid ""
|
6927 |
"There is a 1 minute buffer so that when the Maintenance Mode page is created "
|
6928 |
"an email will not be sent immediately. To test the Send Email option use 2 "
|
6933 |
"how fast your Mail Server sends the email to you."
|
6934 |
msgstr ""
|
6935 |
|
6936 |
+
#: admin/maintenance/maintenance.php:217
|
6937 |
msgid "Send Countdown Timer Email:"
|
6938 |
msgstr ""
|
6939 |
|
6940 |
+
#: admin/maintenance/maintenance.php:217
|
6941 |
msgid ""
|
6942 |
"Enter the email addresses that you would like the Countdown Timer reminder "
|
6943 |
"email sent to, from, cc or bcc."
|
6944 |
msgstr ""
|
6945 |
|
6946 |
+
#: admin/maintenance/maintenance.php:217
|
6947 |
msgid "Network/Multisite Primary Site Options ONLY:"
|
6948 |
msgstr ""
|
6949 |
|
6950 |
+
#: admin/maintenance/maintenance.php:217
|
6951 |
msgid ""
|
6952 |
"These options/settings are for Network/Multisite ONLY and are ONLY displayed "
|
6953 |
"on the Primary Network/Multisite site. Checking these options on a Single/"
|
6955 |
"for Network/Multisite WordPress installations."
|
6956 |
msgstr ""
|
6957 |
|
6958 |
+
#: admin/maintenance/maintenance.php:217
|
6959 |
msgid "Steps to use these special Network/Multisite options:"
|
6960 |
msgstr ""
|
6961 |
|
6962 |
+
#: admin/maintenance/maintenance.php:217
|
6963 |
msgid ""
|
6964 |
"To turn On either of these special options, check the checkbox, click the "
|
6965 |
"Save Options button and click the Turn On button. To turn Off either of "
|
6971 |
"special option settings in that template file."
|
6972 |
msgstr ""
|
6973 |
|
6974 |
+
#: admin/maintenance/maintenance.php:217
|
6975 |
msgid "Put The Primary Site And All Subsites In Maintenance Mode:"
|
6976 |
msgstr ""
|
6977 |
|
6978 |
+
#: admin/maintenance/maintenance.php:217
|
6979 |
msgid "Check this checkbox to put all of the sites into Maintenance Mode."
|
6980 |
msgstr ""
|
6981 |
|
6982 |
+
#: admin/maintenance/maintenance.php:217
|
6983 |
msgid "Put All Subsites In Maintenance Mode, But Not The Primary Site:"
|
6984 |
msgstr ""
|
6985 |
|
6986 |
+
#: admin/maintenance/maintenance.php:217
|
6987 |
msgid ""
|
6988 |
"Check this checkbox to put all of the subsites into Maintenance Mode except "
|
6989 |
"for the Primary site."
|
6990 |
msgstr ""
|
6991 |
|
6992 |
+
#: admin/maintenance/maintenance.php:217
|
6993 |
msgid "Save Options Button"
|
6994 |
msgstr ""
|
6995 |
|
6996 |
+
#: admin/maintenance/maintenance.php:217
|
6997 |
msgid ""
|
6998 |
"Clicking the Save Options button does 2 things: Saves all your options/"
|
6999 |
"settings to your Database and creates all necessary Maintenance Mode files/"
|
7001 |
"Click the Turn On button after clicking the Save Options button."
|
7002 |
msgstr ""
|
7003 |
|
7004 |
+
#: admin/maintenance/maintenance.php:217
|
7005 |
msgid "Preview Button"
|
7006 |
msgstr ""
|
7007 |
|
7008 |
+
#: admin/maintenance/maintenance.php:217
|
7009 |
msgid ""
|
7010 |
"Clicking the Preview button allows you to preview the Maintenance Mode files/"
|
7011 |
"Forms that were created when you clicked the Save Options button. Preview "
|
7015 |
"On button."
|
7016 |
msgstr ""
|
7017 |
|
7018 |
+
#: admin/maintenance/maintenance.php:217
|
7019 |
msgid "Turn On Button"
|
7020 |
msgstr ""
|
7021 |
|
7022 |
+
#: admin/maintenance/maintenance.php:217
|
7023 |
msgid ""
|
7024 |
"Clicking the Turn On button turns On Maintenance Mode. Turn On is "
|
7025 |
"conditional and allows you to make changes to your Maintenance Mode page "
|
7029 |
"on your Maintenance Mode page."
|
7030 |
msgstr ""
|
7031 |
|
7032 |
+
#: admin/maintenance/maintenance.php:217
|
7033 |
msgid "Turn Off Button"
|
7034 |
msgstr ""
|
7035 |
|
7036 |
+
#: admin/maintenance/maintenance.php:217
|
7037 |
msgid ""
|
7038 |
"Clicking the Turn Off button turns Off Maintenance Mode. Turn Off is non-"
|
7039 |
"conditional and works like a Form Reset, but does not remove any of your "
|
7043 |
"remain in your website root folder, but Maintenance Mode will be turned Off."
|
7044 |
msgstr ""
|
7045 |
|
7046 |
+
#: admin/maintenance/maintenance.php:217
|
7047 |
msgid "BPS help links can be found in the Help & FAQ pages."
|
7048 |
msgstr ""
|
7049 |
|
7050 |
+
#: admin/maintenance/maintenance.php:253
|
7051 |
msgid ""
|
7052 |
"Error: You did not enter anything in the Maintenance Mode Time Text Box."
|
7053 |
msgstr ""
|
7054 |
|
7055 |
+
#: admin/maintenance/maintenance.php:273
|
7056 |
msgid ""
|
7057 |
"Error: You did not enter an IP Address in the Maintenance Mode IP Address "
|
7058 |
"Whitelist Text Box. Only IP Addresses are allowed."
|
7059 |
msgstr ""
|
7060 |
|
7061 |
+
#: admin/maintenance/maintenance.php:298
|
7062 |
msgid ""
|
7063 |
"Error: Sorry, JavaScript is not allowed in the MMode Editor. Only HTML, CSS, "
|
7064 |
"images and regular text are allowed."
|
7065 |
msgstr ""
|
7066 |
|
7067 |
+
#: admin/maintenance/maintenance.php:467 admin/maintenance/maintenance.php:487
|
7068 |
msgid ""
|
7069 |
"Success! Your Options have been saved and your Maintenance Mode Form has "
|
7070 |
"been created successfully! Click the Preview button to preview your Website "
|
7072 |
"button."
|
7073 |
msgstr ""
|
7074 |
|
7075 |
+
#: admin/maintenance/maintenance.php:474
|
7076 |
msgid ""
|
7077 |
"Check that the file exists in the /bulletproof-security/admin/htaccess/ "
|
7078 |
"master folder. If this is not the problem "
|
7079 |
msgstr ""
|
7080 |
|
7081 |
+
#: admin/maintenance/maintenance.php:474 admin/maintenance/maintenance.php:494
|
7082 |
#: admin/wizard/wizard.php:105 includes/general-functions.php:509
|
7083 |
#: includes/hud-dismiss-functions.php:358
|
7084 |
#: includes/hud-dismiss-functions.php:402
|
7086 |
msgid "Click Here"
|
7087 |
msgstr ""
|
7088 |
|
7089 |
+
#: admin/maintenance/maintenance.php:474 admin/maintenance/maintenance.php:494
|
7090 |
msgid " for assistance."
|
7091 |
msgstr ""
|
7092 |
|
7093 |
+
#: admin/maintenance/maintenance.php:494
|
7094 |
msgid ""
|
7095 |
"Check that the bps-maintenance-values.php file exists in the /bulletproof-"
|
7096 |
"security/admin/htaccess/ master folder. If this is not the problem "
|
7097 |
msgstr ""
|
7098 |
|
7099 |
+
#: admin/maintenance/maintenance.php:556 admin/maintenance/maintenance.php:563
|
7100 |
+
#: admin/maintenance/maintenance.php:570
|
7101 |
msgid "Your Current IP Address: "
|
7102 |
msgstr ""
|
7103 |
|
7104 |
+
#: admin/maintenance/maintenance.php:556 admin/maintenance/maintenance.php:563
|
7105 |
+
#: admin/maintenance/maintenance.php:570
|
7106 |
msgid "Recommended IP Address: "
|
7107 |
msgstr ""
|
7108 |
|
7109 |
+
#: admin/maintenance/maintenance.php:612
|
7110 |
msgid "MMode Editor"
|
7111 |
msgstr ""
|
7112 |
|
7113 |
+
#: admin/maintenance/maintenance.php:616
|
7114 |
msgid ""
|
7115 |
"Click the Maintenance Mode Guide link in the Question Mark help button above "
|
7116 |
"for CSS Code, Image & Video Embed examples."
|
7117 |
msgstr ""
|
7118 |
|
7119 |
+
#: admin/maintenance/maintenance.php:624
|
7120 |
msgid "MMode Option Settings"
|
7121 |
msgstr ""
|
7122 |
|
7123 |
+
#: admin/maintenance/maintenance.php:627
|
7124 |
msgid "Enable Countdown Timer"
|
7125 |
msgstr ""
|
7126 |
|
7127 |
+
#: admin/maintenance/maintenance.php:631
|
7128 |
msgid "LCD|Lime Green"
|
7129 |
msgstr ""
|
7130 |
|
7131 |
+
#: admin/maintenance/maintenance.php:632 admin/maintenance/maintenance.php:716
|
7132 |
msgid "White"
|
7133 |
msgstr ""
|
7134 |
|
7135 |
+
#: admin/maintenance/maintenance.php:633
|
7136 |
msgid "Silver"
|
7137 |
msgstr ""
|
7138 |
|
7139 |
+
#: admin/maintenance/maintenance.php:634 admin/maintenance/maintenance.php:718
|
7140 |
msgid "Gray"
|
7141 |
msgstr ""
|
7142 |
|
7143 |
+
#: admin/maintenance/maintenance.php:638 admin/maintenance/maintenance.php:642
|
7144 |
msgid "Example: 10 = 10 minutes, 180 = 3 hours, 1440 = 24 hours."
|
7145 |
msgstr ""
|
7146 |
|
7147 |
+
#: admin/maintenance/maintenance.php:641
|
7148 |
msgid "Header Retry-After (Enter the same time as above):"
|
7149 |
msgstr ""
|
7150 |
|
7151 |
+
#: admin/maintenance/maintenance.php:645
|
7152 |
msgid "Enable FrontEnd Maintenance Mode"
|
7153 |
msgstr ""
|
7154 |
|
7155 |
+
#: admin/maintenance/maintenance.php:650
|
7156 |
msgid ""
|
7157 |
"You MUST enter Your Current IP Address or the Recommended IP Address if you "
|
7158 |
"Enable BackEnd Maintenance Mode or you will be locked out of your WordPress "
|
7159 |
"Dashboard."
|
7160 |
msgstr ""
|
7161 |
|
7162 |
+
#: admin/maintenance/maintenance.php:652
|
7163 |
msgid "Enable BackEnd Maintenance Mode "
|
7164 |
msgstr ""
|
7165 |
|
7166 |
+
#: admin/maintenance/maintenance.php:656
|
7167 |
msgid ""
|
7168 |
"Enter The IP address or addresses that can view your website normally (not "
|
7169 |
"in Maintenance Mode).<br><br>Enter multiple IP addresses separated by a "
|
7172 |
"ffff:6463:584d, 0:0:0:0:0:ffff:c842:372c"
|
7173 |
msgstr ""
|
7174 |
|
7175 |
+
#: admin/maintenance/maintenance.php:670
|
7176 |
msgid "No Background Image"
|
7177 |
msgstr ""
|
7178 |
|
7179 |
+
#: admin/maintenance/maintenance.php:671
|
7180 |
msgid "Black Honeycomb Large"
|
7181 |
msgstr ""
|
7182 |
|
7183 |
+
#: admin/maintenance/maintenance.php:672
|
7184 |
msgid "Black Honeycomb Large Grey Line"
|
7185 |
msgstr ""
|
7186 |
|
7187 |
+
#: admin/maintenance/maintenance.php:673
|
7188 |
msgid "Black Mesh Small"
|
7189 |
msgstr ""
|
7190 |
|
7191 |
+
#: admin/maintenance/maintenance.php:674
|
7192 |
msgid "Black Mesh Small Grey Line"
|
7193 |
msgstr ""
|
7194 |
|
7195 |
+
#: admin/maintenance/maintenance.php:675
|
7196 |
msgid "Blue Honeycomb Large"
|
7197 |
msgstr ""
|
7198 |
|
7199 |
+
#: admin/maintenance/maintenance.php:676
|
7200 |
msgid "Blue Mesh Small"
|
7201 |
msgstr ""
|
7202 |
|
7203 |
+
#: admin/maintenance/maintenance.php:677
|
7204 |
msgid "Brown Honeycomb Large"
|
7205 |
msgstr ""
|
7206 |
|
7207 |
+
#: admin/maintenance/maintenance.php:678
|
7208 |
msgid "Brown Mesh Small"
|
7209 |
msgstr ""
|
7210 |
|
7211 |
+
#: admin/maintenance/maintenance.php:679
|
7212 |
msgid "Green Honeycomb Large"
|
7213 |
msgstr ""
|
7214 |
|
7215 |
+
#: admin/maintenance/maintenance.php:680
|
7216 |
msgid "Green Mesh Small"
|
7217 |
msgstr ""
|
7218 |
|
7219 |
+
#: admin/maintenance/maintenance.php:681
|
7220 |
msgid "Gray Honeycomb Large"
|
7221 |
msgstr ""
|
7222 |
|
7223 |
+
#: admin/maintenance/maintenance.php:682
|
7224 |
msgid "Gray Mesh Small"
|
7225 |
msgstr ""
|
7226 |
|
7227 |
+
#: admin/maintenance/maintenance.php:683
|
7228 |
msgid "Orange Honeycomb Large"
|
7229 |
msgstr ""
|
7230 |
|
7231 |
+
#: admin/maintenance/maintenance.php:684
|
7232 |
msgid "Orange Mesh Small"
|
7233 |
msgstr ""
|
7234 |
|
7235 |
+
#: admin/maintenance/maintenance.php:685
|
7236 |
msgid "Purple Honeycomb Large"
|
7237 |
msgstr ""
|
7238 |
|
7239 |
+
#: admin/maintenance/maintenance.php:686
|
7240 |
msgid "Purple Mesh Small"
|
7241 |
msgstr ""
|
7242 |
|
7243 |
+
#: admin/maintenance/maintenance.php:687
|
7244 |
msgid "Red|Burgundy Honeycomb Large"
|
7245 |
msgstr ""
|
7246 |
|
7247 |
+
#: admin/maintenance/maintenance.php:688
|
7248 |
msgid "Red|Burgundy Mesh Small"
|
7249 |
msgstr ""
|
7250 |
|
7251 |
+
#: admin/maintenance/maintenance.php:689
|
7252 |
msgid "Yellow Honeycomb Large"
|
7253 |
msgstr ""
|
7254 |
|
7255 |
+
#: admin/maintenance/maintenance.php:690
|
7256 |
msgid "Yellow Mesh Small"
|
7257 |
msgstr ""
|
7258 |
|
7259 |
+
#: admin/maintenance/maintenance.php:695
|
7260 |
msgid "No Center Image"
|
7261 |
msgstr ""
|
7262 |
|
7263 |
+
#: admin/maintenance/maintenance.php:696
|
7264 |
msgid "Basic Black"
|
7265 |
msgstr ""
|
7266 |
|
7267 |
+
#: admin/maintenance/maintenance.php:697
|
7268 |
msgid "Black Veins"
|
7269 |
msgstr ""
|
7270 |
|
7271 |
+
#: admin/maintenance/maintenance.php:698
|
7272 |
msgid "Blue Glass"
|
7273 |
msgstr ""
|
7274 |
|
7275 |
+
#: admin/maintenance/maintenance.php:699
|
7276 |
msgid "Brushed Metal Stamped"
|
7277 |
msgstr ""
|
7278 |
|
7279 |
+
#: admin/maintenance/maintenance.php:700
|
7280 |
msgid "Chrome"
|
7281 |
msgstr ""
|
7282 |
|
7283 |
+
#: admin/maintenance/maintenance.php:701
|
7284 |
msgid "Chrome Slick"
|
7285 |
msgstr ""
|
7286 |
|
7287 |
+
#: admin/maintenance/maintenance.php:702
|
7288 |
msgid "Fire"
|
7289 |
msgstr ""
|
7290 |
|
7291 |
+
#: admin/maintenance/maintenance.php:703
|
7292 |
msgid "Gun Metal"
|
7293 |
msgstr ""
|
7294 |
|
7295 |
+
#: admin/maintenance/maintenance.php:704
|
7296 |
msgid "Mercury"
|
7297 |
msgstr ""
|
7298 |
|
7299 |
+
#: admin/maintenance/maintenance.php:705
|
7300 |
msgid "Smoke"
|
7301 |
msgstr ""
|
7302 |
|
7303 |
+
#: admin/maintenance/maintenance.php:706
|
7304 |
msgid "Striped Cone"
|
7305 |
msgstr ""
|
7306 |
|
7307 |
+
#: admin/maintenance/maintenance.php:707
|
7308 |
msgid "Swamp Bevel"
|
7309 |
msgstr ""
|
7310 |
|
7311 |
+
#: admin/maintenance/maintenance.php:708
|
7312 |
msgid "Toy"
|
7313 |
msgstr ""
|
7314 |
|
7315 |
+
#: admin/maintenance/maintenance.php:709
|
7316 |
msgid "Water Reflection"
|
7317 |
msgstr ""
|
7318 |
|
7319 |
+
#: admin/maintenance/maintenance.php:710
|
7320 |
msgid "Wood Grain"
|
7321 |
msgstr ""
|
7322 |
|
7323 |
+
#: admin/maintenance/maintenance.php:715
|
7324 |
msgid "No Background Color"
|
7325 |
msgstr ""
|
7326 |
|
7327 |
+
#: admin/maintenance/maintenance.php:717
|
7328 |
msgid "Black"
|
7329 |
msgstr ""
|
7330 |
|
7331 |
+
#: admin/maintenance/maintenance.php:721
|
7332 |
msgid "Display Visitor IP Address"
|
7333 |
msgstr ""
|
7334 |
|
7335 |
+
#: admin/maintenance/maintenance.php:725
|
7336 |
msgid "Display Dashboard Reminder Message"
|
7337 |
msgstr ""
|
7338 |
|
7339 |
+
#: admin/maintenance/maintenance.php:727
|
7340 |
msgid "Enable Visitor Logging"
|
7341 |
msgstr ""
|
7342 |
|
7343 |
+
#: admin/maintenance/maintenance.php:729
|
7344 |
msgid "Send Email when Countdown Timer has completed"
|
7345 |
msgstr ""
|
7346 |
|
7347 |
+
#: admin/maintenance/maintenance.php:731
|
7348 |
msgid "Send Countdown Timer Email To:"
|
7349 |
msgstr ""
|
7350 |
|
7351 |
+
#: admin/maintenance/maintenance.php:733
|
7352 |
msgid "Send Countdown Timer Email From:"
|
7353 |
msgstr ""
|
7354 |
|
7355 |
+
#: admin/maintenance/maintenance.php:735
|
7356 |
msgid "Send Countdown Timer Email Cc:"
|
7357 |
msgstr ""
|
7358 |
|
7359 |
+
#: admin/maintenance/maintenance.php:737
|
7360 |
msgid "Send Countdown Timer Email Bcc:"
|
7361 |
msgstr ""
|
7362 |
|
7363 |
+
#: admin/maintenance/maintenance.php:742
|
7364 |
msgid "MMode Network|Multisite Options"
|
7365 |
msgstr ""
|
7366 |
|
7367 |
+
#: admin/maintenance/maintenance.php:745
|
7368 |
msgid "Network|Multisite Primary Site Options ONLY"
|
7369 |
msgstr ""
|
7370 |
|
7371 |
+
#: admin/maintenance/maintenance.php:749
|
7372 |
msgid ""
|
7373 |
"Click the Maintenance Mode Question Mark help button for the steps to use "
|
7374 |
"these special options:"
|
7375 |
msgstr ""
|
7376 |
|
7377 |
+
#: admin/maintenance/maintenance.php:750
|
7378 |
msgid "Put The Primary Site And All Subsites In Maintenance Mode"
|
7379 |
msgstr ""
|
7380 |
|
7381 |
+
#: admin/maintenance/maintenance.php:752
|
7382 |
msgid "Put All Subsites In Maintenance Mode, But Not The Primary Site"
|
7383 |
msgstr ""
|
7384 |
|
7385 |
+
#: admin/maintenance/maintenance.php:760
|
7386 |
msgid ""
|
7387 |
"Clicking OK Saves your Options/Settings to your Database and also creates "
|
7388 |
"your Maintenance Mode page. Click the Preview button to preview your "
|
7390 |
"Turn On button to enable Maintenance Mode on your website."
|
7391 |
msgstr ""
|
7392 |
|
7393 |
+
#: admin/maintenance/maintenance.php:874 admin/maintenance/maintenance.php:1085
|
7394 |
msgid ""
|
7395 |
"Error: You did not enter an IP Address in the Maintenance Mode IP Address "
|
7396 |
"Whitelist Text Box."
|
7397 |
msgstr ""
|
7398 |
|
7399 |
+
#: admin/maintenance/maintenance.php:886 admin/maintenance/maintenance.php:1096
|
7400 |
msgid ""
|
7401 |
"IP Address Format Error: You have entered multiple IP Addresses using an "
|
7402 |
"incorrect Format."
|
7403 |
msgstr ""
|
7404 |
|
7405 |
+
#: admin/maintenance/maintenance.php:886 admin/maintenance/maintenance.php:1096
|
7406 |
msgid ""
|
7407 |
"The correct IP Address Format is: IP Address comma single space. Example: "
|
7408 |
"100.99.88.77, 200.66.55.44, 44.33.22.1 or 100.99.88., 200.66.55., 44.33.22. "
|
7409 |
"if you are using the recommended 3 octet IP addresses."
|
7410 |
msgstr ""
|
7411 |
|
7412 |
+
#: admin/maintenance/maintenance.php:886 admin/maintenance/maintenance.php:1096
|
7413 |
msgid ""
|
7414 |
"Correct the IP Address Format and click the Save Options button again. If "
|
7415 |
"you have an IPv6 IP address use the same general format as an IPv4 IP "
|
7416 |
"address - comma single space."
|
7417 |
msgstr ""
|
7418 |
|
7419 |
+
#: admin/maintenance/maintenance.php:938 admin/maintenance/maintenance.php:1147
|
7420 |
+
#: admin/maintenance/maintenance.php:1249
|
7421 |
msgid "FrontEnd Maintenance Mode has been Turned On."
|
7422 |
msgstr ""
|
7423 |
|
7424 |
+
#: admin/maintenance/maintenance.php:956 admin/maintenance/maintenance.php:1273
|
7425 |
+
#: admin/maintenance/maintenance.php:1792
|
7426 |
+
#: admin/maintenance/maintenance.php:1923
|
7427 |
+
#: admin/maintenance/maintenance.php:2117
|
7428 |
msgid "htaccess Files Disabled: BackEnd Maintenance Mode is disabled."
|
7429 |
msgstr ""
|
7430 |
|
7431 |
+
#: admin/maintenance/maintenance.php:1031
|
7432 |
+
#: admin/maintenance/maintenance.php:1350
|
7433 |
msgid "BackEnd Maintenance Mode has been Turned On."
|
7434 |
msgstr ""
|
7435 |
|
7436 |
+
#: admin/maintenance/maintenance.php:1366
|
7437 |
+
#: admin/maintenance/maintenance.php:2169
|
7438 |
msgid ""
|
7439 |
"Error: You have not saved your option settings yet. Click the Save Options "
|
7440 |
"button."
|
7441 |
msgstr ""
|
7442 |
|
7443 |
+
#: admin/maintenance/maintenance.php:1445
|
7444 |
msgid ""
|
7445 |
"Error: Unable to get/find the site root index.php file for this GWIOD - "
|
7446 |
"Giving WordPress Its Own Directory - website."
|
7447 |
msgstr ""
|
7448 |
|
7449 |
+
#: admin/maintenance/maintenance.php:1445
|
7450 |
msgid "GWIOD Site Root index.php File Path Checked: "
|
7451 |
msgstr ""
|
7452 |
|
7453 |
+
#: admin/maintenance/maintenance.php:1445
|
7454 |
msgid ""
|
7455 |
"BPS Maintenance Mode will not work correctly with your WordPress GWIOD "
|
7456 |
"setup. Try another WordPress Maintenance Mode plugin."
|
7457 |
msgstr ""
|
7458 |
|
7459 |
+
#: admin/maintenance/maintenance.php:1514
|
7460 |
msgid ""
|
7461 |
"Error: Unable to get/find the site root index.php file for this Network "
|
7462 |
"GWIOD - Giving WordPress Its Own Directory - website."
|
7463 |
msgstr ""
|
7464 |
|
7465 |
+
#: admin/maintenance/maintenance.php:1514
|
7466 |
msgid "Network GWIOD Site Root index.php File Path Checked: "
|
7467 |
msgstr ""
|
7468 |
|
7469 |
+
#: admin/maintenance/maintenance.php:1514
|
7470 |
msgid ""
|
7471 |
"Please copy this error message and send it in an email to info@ait-pro.com "
|
7472 |
"for assistance."
|
7473 |
msgstr ""
|
7474 |
|
7475 |
+
#: admin/maintenance/maintenance.php:1600
|
7476 |
+
#: admin/maintenance/maintenance.php:1726
|
7477 |
+
#: admin/maintenance/maintenance.php:1886
|
7478 |
+
#: admin/maintenance/maintenance.php:2067
|
7479 |
msgid "FrontEnd Maintenance Mode has been Turned Off."
|
7480 |
msgstr ""
|
7481 |
|
7482 |
+
#: admin/maintenance/maintenance.php:1832
|
7483 |
+
#: admin/maintenance/maintenance.php:1959
|
7484 |
+
#: admin/maintenance/maintenance.php:2153
|
7485 |
msgid "BackEnd Maintenance Mode has been Turned Off."
|
7486 |
msgstr ""
|
7487 |
|
7637 |
"will be deleted."
|
7638 |
msgstr ""
|
7639 |
|
7640 |
+
#: admin/mscan/mscan-help-text.php:32 admin/mscan/mscan.php:1041
|
7641 |
msgid "Website Folders & Files To Scan"
|
7642 |
msgstr ""
|
7643 |
|
7676 |
"than 300 seconds."
|
7677 |
msgstr ""
|
7678 |
|
7679 |
+
#: admin/mscan/mscan-help-text.php:38 admin/mscan/mscan.php:1149
|
7680 |
msgid "Exclude Individual Folders"
|
7681 |
msgstr ""
|
7682 |
|
7693 |
"particular cache folder under the wp-content folder."
|
7694 |
msgstr ""
|
7695 |
|
7696 |
+
#: admin/mscan/mscan-help-text.php:40 admin/mscan/mscan.php:1155
|
7697 |
msgid "Scan Database"
|
7698 |
msgstr ""
|
7699 |
|
7703 |
"suspicious code."
|
7704 |
msgstr ""
|
7705 |
|
7706 |
+
#: admin/mscan/mscan-help-text.php:42 admin/mscan/mscan.php:1161
|
7707 |
msgid "Scan Skipped Files Only"
|
7708 |
msgstr ""
|
7709 |
|
7716 |
"to On."
|
7717 |
msgstr ""
|
7718 |
|
7719 |
+
#: admin/mscan/mscan-help-text.php:44 admin/mscan/mscan.php:1167
|
7720 |
msgid "Automatically Delete /tmp Files"
|
7721 |
msgstr ""
|
7722 |
|
7726 |
"commonly hide hacker files in the /tmp folder."
|
7727 |
msgstr ""
|
7728 |
|
7729 |
+
#: admin/mscan/mscan-help-text.php:46 admin/mscan/mscan.php:1173
|
7730 |
msgid "Exclude /tmp Files"
|
7731 |
msgstr ""
|
7732 |
|
7826 |
"convention: theme-name-child.x.x.zip."
|
7827 |
msgstr ""
|
7828 |
|
7829 |
+
#: admin/mscan/mscan-help-text.php:60 admin/mscan/mscan.php:1475
|
7830 |
msgid "View|Ignore|Delete Suspicious Files"
|
7831 |
msgstr ""
|
7832 |
|
7841 |
"ignored file it will be scanned in future scans."
|
7842 |
msgstr ""
|
7843 |
|
7844 |
+
#: admin/mscan/mscan-help-text.php:62 admin/mscan/mscan.php:1848
|
7845 |
msgid "View|Ignore Suspicious DB Entries"
|
7846 |
msgstr ""
|
7847 |
|
8003 |
msgid "MScan Scan"
|
8004 |
msgstr ""
|
8005 |
|
8006 |
+
#: admin/mscan/mscan.php:217 admin/mscan/mscan.php:2128
|
8007 |
+
#: admin/mscan/mscan.php:2130
|
8008 |
msgid "MScan Log"
|
8009 |
msgstr ""
|
8010 |
|
8011 |
+
#: admin/mscan/mscan.php:218 admin/mscan/mscan.php:2356
|
8012 |
+
#: admin/mscan/mscan.php:2359
|
8013 |
msgid "MScan Report"
|
8014 |
msgstr ""
|
8015 |
|
8016 |
+
#: admin/mscan/mscan.php:219 admin/mscan/mscan.php:3072
|
8017 |
+
#: admin/mscan/mscan.php:3075
|
8018 |
msgid "MScan Saved Reports"
|
8019 |
msgstr ""
|
8020 |
|
8021 |
+
#: admin/mscan/mscan.php:248
|
8022 |
msgid "MScan Malware Scanner Guide"
|
8023 |
msgstr ""
|
8024 |
|
8025 |
+
#: admin/mscan/mscan.php:249
|
8026 |
msgid "MScan Troubleshooting & Code Posting"
|
8027 |
msgstr ""
|
8028 |
|
8029 |
+
#: admin/mscan/mscan.php:250
|
8030 |
msgid "BPS Pro Troubleshooting Steps"
|
8031 |
msgstr ""
|
8032 |
|
8033 |
+
#: admin/mscan/mscan.php:348
|
8034 |
msgid "WP Core Zip File Download Failed"
|
8035 |
msgstr ""
|
8036 |
|
8037 |
+
#: admin/mscan/mscan.php:354
|
8038 |
msgid "Plugin Zip File Download Failed"
|
8039 |
msgstr ""
|
8040 |
|
8041 |
+
#: admin/mscan/mscan.php:360
|
8042 |
msgid "Theme Zip File Download Failed"
|
8043 |
msgstr ""
|
8044 |
|
8045 |
+
#: admin/mscan/mscan.php:368
|
8046 |
msgid "Error: Zip file download errors occurred"
|
8047 |
msgstr ""
|
8048 |
|
8049 |
+
#: admin/mscan/mscan.php:368
|
8050 |
msgid ""
|
8051 |
"The problem could either be caused due to a connectivity issue when "
|
8052 |
"requesting zip files from wordpress.org or a folder permission or Ownership "
|
8055 |
"activity/"
|
8056 |
msgstr ""
|
8057 |
|
8058 |
+
#: admin/mscan/mscan.php:451
|
8059 |
msgid ""
|
8060 |
"MScan scan results and data has been deleted. Your MScan option settings "
|
8061 |
"have not been deleted."
|
8062 |
msgstr ""
|
8063 |
|
8064 |
+
#: admin/mscan/mscan.php:479
|
8065 |
msgid ""
|
8066 |
"MScan Plugin and Theme file hashes have been deleted. New Plugin and Theme "
|
8067 |
"file hashes will be created the next time you run a scan. You should also "
|
8069 |
"settings have not been deleted."
|
8070 |
msgstr ""
|
8071 |
|
8072 |
+
#: admin/mscan/mscan.php:520 admin/mscan/mscan.php:540
|
8073 |
+
#: admin/mscan/mscan.php:842
|
8074 |
msgid "Skipped file scanning is turned On. Only skipped files will be scanned."
|
8075 |
msgstr ""
|
8076 |
|
8077 |
+
#: admin/mscan/mscan.php:524
|
8078 |
msgid "MScan scanning has been stopped."
|
8079 |
msgstr ""
|
8080 |
|
8081 |
+
#: admin/mscan/mscan.php:657
|
8082 |
msgid "First Time Scan or the Delete File Hashes Tool was used"
|
8083 |
msgstr ""
|
8084 |
|
8085 |
+
#: admin/mscan/mscan.php:657
|
8086 |
msgid ""
|
8087 |
"You will only see this message the first time you run a scan or if you use "
|
8088 |
"the Delete Files Hashes Tool. The File Hash Maker runs whenever WP Core, "
|
8091 |
"scan after the File Hash Maker has completed."
|
8092 |
msgstr ""
|
8093 |
|
8094 |
+
#: admin/mscan/mscan.php:681
|
8095 |
msgid "Click OK to stop scanning or click Cancel."
|
8096 |
msgstr ""
|
8097 |
|
8098 |
+
#: admin/mscan/mscan.php:693
|
8099 |
msgid ""
|
8100 |
"Click OK to reset/delete all MScan scan results and data or click Cancel. "
|
8101 |
"Note: MScan option settings will not be reset/deleted."
|
8102 |
msgstr ""
|
8103 |
|
8104 |
+
#: admin/mscan/mscan.php:701
|
8105 |
msgid "MScan Options & Tools"
|
8106 |
msgstr ""
|
8107 |
|
8108 |
+
#: admin/mscan/mscan.php:712
|
8109 |
msgid "Save MScan Options"
|
8110 |
msgstr ""
|
8111 |
|
8112 |
+
#: admin/mscan/mscan.php:846
|
8113 |
msgid ""
|
8114 |
"Skipped file scanning is turned On. There are no skipped files to be "
|
8115 |
"scanned. Either there really are not any skipped files to scan or you have "
|
8116 |
"not run a regular scan yet with the Skipped File Scan option turned Off."
|
8117 |
msgstr ""
|
8118 |
|
8119 |
+
#: admin/mscan/mscan.php:850
|
8120 |
msgid "Warning: "
|
8121 |
msgstr ""
|
8122 |
|
8123 |
+
#: admin/mscan/mscan.php:850
|
8124 |
msgid ""
|
8125 |
"On some web hosts (Known host issues: SiteGround, Cyon) turning On the "
|
8126 |
"\"Automatically Delete /tmp Files\" option setting will cause your website/"
|
8131 |
"the names of those tmp files to exclude."
|
8132 |
msgstr ""
|
8133 |
|
8134 |
+
#: admin/mscan/mscan.php:854
|
8135 |
msgid "MScan Options saved."
|
8136 |
msgstr ""
|
8137 |
|
8138 |
+
#: admin/mscan/mscan.php:1041
|
8139 |
msgid "Files are not displayed, but will be scanned"
|
8140 |
msgstr ""
|
8141 |
|
8142 |
+
#: admin/mscan/mscan.php:1042
|
8143 |
msgid "MScan Options"
|
8144 |
msgstr ""
|
8145 |
|
8146 |
+
#: admin/mscan/mscan.php:1043
|
8147 |
msgid "MScan Tools"
|
8148 |
msgstr ""
|
8149 |
|
8150 |
+
#: admin/mscan/mscan.php:1056
|
8151 |
msgid "Folder Name"
|
8152 |
msgstr ""
|
8153 |
|
8154 |
+
#: admin/mscan/mscan.php:1075
|
8155 |
msgid "Folder is not readable"
|
8156 |
msgstr ""
|
8157 |
|
8158 |
+
#: admin/mscan/mscan.php:1106
|
8159 |
msgid ""
|
8160 |
"This folder contains another WordPress website. This checkbox cannot be "
|
8161 |
"checked. To scan that site run MScan from that site. Click the MScan "
|
8163 |
"\" help section."
|
8164 |
msgstr ""
|
8165 |
|
8166 |
+
#: admin/mscan/mscan.php:1140
|
8167 |
msgid "Max File Size Limit to Scan:"
|
8168 |
msgstr ""
|
8169 |
|
8170 |
+
#: admin/mscan/mscan.php:1145
|
8171 |
msgid "Max Time Limit to Scan:"
|
8172 |
msgstr ""
|
8173 |
|
8174 |
+
#: admin/mscan/mscan.php:1149
|
8175 |
msgid "Enter one folder path per line. Include folder slashes."
|
8176 |
msgstr ""
|
8177 |
|
8178 |
+
#: admin/mscan/mscan.php:1149 admin/mscan/mscan.php:1173
|
8179 |
msgid "Example:"
|
8180 |
msgstr ""
|
8181 |
|
8182 |
+
#: admin/mscan/mscan.php:1149 admin/mscan/mscan.php:1161
|
8183 |
+
#: admin/mscan/mscan.php:1173
|
8184 |
msgid "Click the MScan Question Mark help button for more help info."
|
8185 |
msgstr ""
|
8186 |
|
8187 |
+
#: admin/mscan/mscan.php:1157
|
8188 |
msgid "Database Scan On"
|
8189 |
msgstr ""
|
8190 |
|
8191 |
+
#: admin/mscan/mscan.php:1158
|
8192 |
msgid "Database Scan Off"
|
8193 |
msgstr ""
|
8194 |
|
8195 |
+
#: admin/mscan/mscan.php:1161
|
8196 |
msgid ""
|
8197 |
"When Skipped File Scan is On only skipped files will be scanned. Note: No "
|
8198 |
"other MScan option settings have any effect while Skipped File Scan is set "
|
8199 |
"to On."
|
8200 |
msgstr ""
|
8201 |
|
8202 |
+
#: admin/mscan/mscan.php:1163
|
8203 |
msgid "Skipped File Scan Off"
|
8204 |
msgstr ""
|
8205 |
|
8206 |
+
#: admin/mscan/mscan.php:1164
|
8207 |
msgid "Skipped File Scan On"
|
8208 |
msgstr ""
|
8209 |
|
8210 |
+
#: admin/mscan/mscan.php:1169
|
8211 |
msgid "Delete Tmp Files Off"
|
8212 |
msgstr ""
|
8213 |
|
8214 |
+
#: admin/mscan/mscan.php:1170
|
8215 |
msgid "Delete Tmp Files On"
|
8216 |
msgstr ""
|
8217 |
|
8218 |
+
#: admin/mscan/mscan.php:1173
|
8219 |
msgid "Enter one file name per line."
|
8220 |
msgstr ""
|
8221 |
|
8222 |
+
#: admin/mscan/mscan.php:1179
|
8223 |
msgid "Scheduled Scan Frequency (BPS Pro only)"
|
8224 |
msgstr ""
|
8225 |
|
8226 |
+
#: admin/mscan/mscan.php:1181
|
8227 |
msgid "Scheduled Scan Off"
|
8228 |
msgstr ""
|
8229 |
|
8230 |
+
#: admin/mscan/mscan.php:1182
|
8231 |
msgid "Run Scan Every 60 Minutes"
|
8232 |
msgstr ""
|
8233 |
|
8234 |
+
#: admin/mscan/mscan.php:1183
|
8235 |
msgid "Run Scan Every 3 Hours"
|
8236 |
msgstr ""
|
8237 |
|
8238 |
+
#: admin/mscan/mscan.php:1184
|
8239 |
msgid "Run Scan Every 6 Hours"
|
8240 |
msgstr ""
|
8241 |
|
8242 |
+
#: admin/mscan/mscan.php:1185
|
8243 |
msgid "Run Scan Every 12 Hours"
|
8244 |
msgstr ""
|
8245 |
|
8246 |
+
#: admin/mscan/mscan.php:1186
|
8247 |
msgid "Run Scan Every 24 Hours"
|
8248 |
msgstr ""
|
8249 |
|
8250 |
+
#: admin/mscan/mscan.php:1189
|
8251 |
msgid "Click OK to save MScan Options or click Cancel"
|
8252 |
msgstr ""
|
8253 |
|
8254 |
+
#: admin/mscan/mscan.php:1198
|
8255 |
msgid ""
|
8256 |
"CAUTION: Please click the MScan Question Mark help button before using this "
|
8257 |
"tool. This tool allows you to delete the Plugin and Theme file hashes.\\n"
|
8262 |
"OK to delete Plugin and Theme file hashes or click Cancel"
|
8263 |
msgstr ""
|
8264 |
|
8265 |
+
#: admin/mscan/mscan.php:1208
|
8266 |
msgid ""
|
8267 |
"Clicking OK will upload Plugin Zip files to the /wp-content/bps-backup/"
|
8268 |
"plugin-hashes/ folder. The zip files will be extracted, MD5 file hashes will "
|
8269 |
"be created and the zip files will be deleted."
|
8270 |
msgstr ""
|
8271 |
|
8272 |
+
#: admin/mscan/mscan.php:1208
|
8273 |
msgid ""
|
8274 |
"Zip files MUST be named using this exact format: plugin-name.x.x.zip where x "
|
8275 |
"is the actual current version number of the plugin in the zip file."
|
8276 |
msgstr ""
|
8277 |
|
8278 |
+
#: admin/mscan/mscan.php:1208
|
8279 |
msgid "Click OK to upload Plugin Zip files or click Cancel."
|
8280 |
msgstr ""
|
8281 |
|
8282 |
+
#: admin/mscan/mscan.php:1218
|
8283 |
msgid ""
|
8284 |
"Clicking OK will upload Theme Zip files to the /wp-content/bps-backup/theme-"
|
8285 |
"hashes/ folder. The zip files will be extracted, MD5 file hashes will be "
|
8286 |
"created and the zip files will be deleted."
|
8287 |
msgstr ""
|
8288 |
|
8289 |
+
#: admin/mscan/mscan.php:1218
|
8290 |
msgid ""
|
8291 |
"Zip files MUST be named using this exact format: theme-name.x.x.zip where x "
|
8292 |
"is the actual current version number of the theme in the zip file."
|
8293 |
msgstr ""
|
8294 |
|
8295 |
+
#: admin/mscan/mscan.php:1218
|
8296 |
msgid "Click OK to upload Theme Zip files or click Cancel."
|
8297 |
msgstr ""
|
8298 |
|
8299 |
+
#: admin/mscan/mscan.php:1259
|
8300 |
msgid "Plugin Zip File Upload Successful: "
|
8301 |
msgstr ""
|
8302 |
|
8303 |
+
#: admin/mscan/mscan.php:1322 admin/mscan/mscan.php:1434
|
8304 |
msgid "Error: Zip File Upload Failed: "
|
8305 |
msgstr ""
|
8306 |
|
8307 |
+
#: admin/mscan/mscan.php:1322 admin/mscan/mscan.php:1434
|
8308 |
msgid "Unable to move this uploaded zip file: "
|
8309 |
msgstr ""
|
8310 |
|
8311 |
+
#: admin/mscan/mscan.php:1322 admin/mscan/mscan.php:1434
|
8312 |
msgid " to this folder: "
|
8313 |
msgstr ""
|
8314 |
|
8315 |
+
#: admin/mscan/mscan.php:1328 admin/mscan/mscan.php:1440
|
8316 |
msgid "File Extension/Type or Filename Error: "
|
8317 |
msgstr ""
|
8318 |
|
8319 |
+
#: admin/mscan/mscan.php:1328
|
8320 |
msgid ""
|
8321 |
" is either not a .zip file or the .zip file is not named correctly. Only ."
|
8322 |
"zip files are allowed to be uploaded. Zip files MUST be named using this "
|
8324 |
"version of the plugin in the zip file."
|
8325 |
msgstr ""
|
8326 |
|
8327 |
+
#: admin/mscan/mscan.php:1334 admin/mscan/mscan.php:1446
|
8328 |
msgid "Error: No zip file chosen: "
|
8329 |
msgstr ""
|
8330 |
|
8331 |
+
#: admin/mscan/mscan.php:1334
|
8332 |
msgid ""
|
8333 |
"You need to choose zip files before clicking the Upload Plugin Zip Files "
|
8334 |
"button."
|
8335 |
msgstr ""
|
8336 |
|
8337 |
+
#: admin/mscan/mscan.php:1371
|
8338 |
msgid "Theme Zip File Upload Successful: "
|
8339 |
msgstr ""
|
8340 |
|
8341 |
+
#: admin/mscan/mscan.php:1440
|
8342 |
msgid ""
|
8343 |
" is either not a .zip file or the .zip file is not named correctly. Only ."
|
8344 |
"zip files are allowed to be uploaded. Zip files MUST be named using this "
|
8346 |
"version of the theme in the zip file."
|
8347 |
msgstr ""
|
8348 |
|
8349 |
+
#: admin/mscan/mscan.php:1446
|
8350 |
msgid ""
|
8351 |
"You need to choose zip files before clicking the Upload Theme Zip Files "
|
8352 |
"button."
|
8353 |
msgstr ""
|
8354 |
|
8355 |
+
#: admin/mscan/mscan.php:1588
|
8356 |
msgid " has been deleted."
|
8357 |
msgstr ""
|
8358 |
|
8359 |
+
#: admin/mscan/mscan.php:1609
|
8360 |
msgid ""
|
8361 |
" Current Status has been changed to Ignored File and this file will not be "
|
8362 |
"scanned in any future MScan Scans."
|
8363 |
msgstr ""
|
8364 |
|
8365 |
+
#: admin/mscan/mscan.php:1630
|
8366 |
msgid ""
|
8367 |
" Ignored File Status has been removed. The previous Status of the file will "
|
8368 |
"be displayed again and this file will be scanned in future MScan scans."
|
8369 |
msgstr ""
|
8370 |
|
8371 |
+
#: admin/mscan/mscan.php:1652 admin/mscan/mscan.php:1663
|
8372 |
+
#: admin/mscan/mscan.php:1669
|
8373 |
msgid "Close File"
|
8374 |
msgstr ""
|
8375 |
|
8376 |
+
#: admin/mscan/mscan.php:1652 admin/mscan/mscan.php:1669
|
8377 |
+
#: admin/mscan/mscan.php:1994
|
8378 |
msgid "MScan Pattern Match"
|
8379 |
msgstr ""
|
8380 |
|
8381 |
+
#: admin/mscan/mscan.php:1652
|
8382 |
msgid ""
|
8383 |
"Only the MScan Pattern Match is displayed for images instead of the image "
|
8384 |
"file code."
|
8385 |
msgstr ""
|
8386 |
|
8387 |
+
#: admin/mscan/mscan.php:1652
|
8388 |
msgid ""
|
8389 |
"Opening image files to view image file code does not work well in a Browser."
|
8390 |
msgstr ""
|
8391 |
|
8392 |
+
#: admin/mscan/mscan.php:1652
|
8393 |
msgid ""
|
8394 |
"You can download suspicious image files and use a code editor like Notepad++ "
|
8395 |
"to check image file code for any malicious code."
|
8396 |
msgstr ""
|
8397 |
|
8398 |
+
#: admin/mscan/mscan.php:1652 admin/mscan/mscan.php:1663
|
8399 |
+
#: admin/mscan/mscan.php:1669 admin/mscan/mscan.php:1994
|
8400 |
msgid ""
|
8401 |
"If you are not sure what to check for or what is and is not malicious code "
|
8402 |
"then click the MScan Question Mark help button."
|
8403 |
msgstr ""
|
8404 |
|
8405 |
+
#: admin/mscan/mscan.php:1663
|
8406 |
msgid "MScan File Hash Mismatch"
|
8407 |
msgstr ""
|
8408 |
|
8409 |
+
#: admin/mscan/mscan.php:1663
|
8410 |
msgid ""
|
8411 |
"Known Issues: Some plugins and themes alter or create new files after they "
|
8412 |
"are installed. That will create false positives."
|
8413 |
msgstr ""
|
8414 |
|
8415 |
+
#: admin/mscan/mscan.php:1663
|
8416 |
msgid ""
|
8417 |
"You can download files that are seen as suspicious and compare them to new "
|
8418 |
"plugin or theme files using a code editor like Notepad++."
|
8419 |
msgstr ""
|
8420 |
|
8421 |
+
#: admin/mscan/mscan.php:1669
|
8422 |
msgid ""
|
8423 |
"You can use your Browser's Search or Find feature to search the file "
|
8424 |
"contents/code displayed below using the MScan Pattern Match above for the "
|
8425 |
"suspicious code that was detected by MScan."
|
8426 |
msgstr ""
|
8427 |
|
8428 |
+
#: admin/mscan/mscan.php:1669
|
8429 |
msgid ""
|
8430 |
"You can download suspicious files if you would like to check the file "
|
8431 |
"contents/code more extensively with a code editor like Notepad++."
|
8432 |
msgstr ""
|
8433 |
|
8434 |
+
#: admin/mscan/mscan.php:1686 admin/mscan/mscan.php:2727
|
8435 |
+
#: admin/mscan/mscan.php:3557
|
8436 |
msgid ""
|
8437 |
"File hash comparison scan results are 100% accurate. WP Core, Plugin and "
|
8438 |
"Theme files are scanned using file hash comparison scanning."
|
8439 |
msgstr ""
|
8440 |
|
8441 |
+
#: admin/mscan/mscan.php:1686 admin/mscan/mscan.php:2727
|
8442 |
+
#: admin/mscan/mscan.php:3557
|
8443 |
msgid ""
|
8444 |
"Pattern matching scan results are less accurate and will usually detect some "
|
8445 |
"false positive matches. All other files that are not WP Core, Plugin and "
|
8446 |
"Theme files are scanned using pattern matching scanning."
|
8447 |
msgstr ""
|
8448 |
|
8449 |
+
#: admin/mscan/mscan.php:1686
|
8450 |
msgid ""
|
8451 |
"You can View, Ignore and Delete files detected as suspicious using the Form "
|
8452 |
"below. Before deleting any files make a backup of those files on your "
|
8453 |
"computer not on your hosting account."
|
8454 |
msgstr ""
|
8455 |
|
8456 |
+
#: admin/mscan/mscan.php:1686 admin/mscan/mscan.php:2727
|
8457 |
+
#: admin/mscan/mscan.php:3557
|
8458 |
msgid ""
|
8459 |
"And of course check the file contents of suspicious files to see if they "
|
8460 |
"contain hacker code or are false positive matches. Use the Ignore File "
|
8461 |
"checkbox option to ignore false postive matches."
|
8462 |
msgstr ""
|
8463 |
|
8464 |
+
#: admin/mscan/mscan.php:1686 admin/mscan/mscan.php:2727
|
8465 |
+
#: admin/mscan/mscan.php:3557
|
8466 |
msgid ""
|
8467 |
"When you ignore a file it will no longer be scanned in any future scans. "
|
8468 |
"When you unignore an ignored file it will be scanned in future scans."
|
8469 |
msgstr ""
|
8470 |
|
8471 |
+
#: admin/mscan/mscan.php:1716 admin/mscan/mscan.php:2019
|
8472 |
+
#: admin/mscan/mscan.php:2742 admin/mscan/mscan.php:2820
|
8473 |
+
#: admin/mscan/mscan.php:3564 admin/mscan/mscan.php:3611
|
8474 |
msgid "Current Status"
|
8475 |
msgstr ""
|
8476 |
|
8477 |
+
#: admin/mscan/mscan.php:1717
|
8478 |
msgid "View<br>File"
|
8479 |
msgstr ""
|
8480 |
|
8481 |
+
#: admin/mscan/mscan.php:1718
|
8482 |
msgid "Ignore<br>File"
|
8483 |
msgstr ""
|
8484 |
|
8485 |
+
#: admin/mscan/mscan.php:1719
|
8486 |
msgid "Unignore<br>File"
|
8487 |
msgstr ""
|
8488 |
|
8489 |
+
#: admin/mscan/mscan.php:1720
|
8490 |
msgid "Delete<br>File"
|
8491 |
msgstr ""
|
8492 |
|
8493 |
+
#: admin/mscan/mscan.php:1721 admin/mscan/mscan.php:2743
|
8494 |
+
#: admin/mscan/mscan.php:3565 admin/system-info/system-info.php:1031
|
8495 |
+
#: admin/system-info/system-info.php:1097
|
8496 |
msgid "File Path"
|
8497 |
msgstr ""
|
8498 |
|
8499 |
+
#: admin/mscan/mscan.php:1722
|
8500 |
msgid "File Hash or<br>Pattern Match"
|
8501 |
msgstr ""
|
8502 |
|
8503 |
+
#: admin/mscan/mscan.php:1723 admin/mscan/mscan.php:2027
|
8504 |
msgid "Scan<br>Time"
|
8505 |
msgstr ""
|
8506 |
|
8507 |
+
#: admin/mscan/mscan.php:1736 admin/mscan/mscan.php:2758
|
8508 |
msgid "Skipped File"
|
8509 |
msgstr ""
|
8510 |
|
8511 |
+
#: admin/mscan/mscan.php:1736 admin/mscan/mscan.php:2758
|
8512 |
msgid "Not Scanned"
|
8513 |
msgstr ""
|
8514 |
|
8515 |
+
#: admin/mscan/mscan.php:1740 admin/mscan/mscan.php:1747
|
8516 |
+
#: admin/mscan/mscan.php:2762 admin/mscan/mscan.php:2769
|
8517 |
msgid "Ignored File"
|
8518 |
msgstr ""
|
8519 |
|
8520 |
+
#: admin/mscan/mscan.php:1752 admin/mscan/mscan.php:2774
|
8521 |
msgid "Suspicious File"
|
8522 |
msgstr ""
|
8523 |
|
8524 |
+
#: admin/mscan/mscan.php:1758 admin/mscan/mscan.php:2048
|
8525 |
+
#: admin/mscan/mscan.php:3206
|
8526 |
msgid "View"
|
8527 |
msgstr ""
|
8528 |
|
8529 |
+
#: admin/mscan/mscan.php:1759 admin/mscan/mscan.php:2049
|
8530 |
msgid "Ignore"
|
8531 |
msgstr ""
|
8532 |
|
8533 |
+
#: admin/mscan/mscan.php:1761 admin/mscan/mscan.php:2050
|
8534 |
msgid "Unignore"
|
8535 |
msgstr ""
|
8536 |
|
8537 |
+
#: admin/mscan/mscan.php:1789 admin/mscan/mscan.php:2797
|
8538 |
msgid "No Suspicious Files were detected"
|
8539 |
msgstr ""
|
8540 |
|
8541 |
+
#: admin/mscan/mscan.php:1803
|
8542 |
msgid ""
|
8543 |
"View File Option: Selecting the View File Checkbox Form option will display "
|
8544 |
"the contents of the file that you have selected to view.\\n"
|
8558 |
"OK to proceed or click Cancel"
|
8559 |
msgstr ""
|
8560 |
|
8561 |
+
#: admin/mscan/mscan.php:1951
|
8562 |
msgid "Current Status has been changed to Ignored for DB Row ID"
|
8563 |
msgstr ""
|
8564 |
|
8565 |
+
#: admin/mscan/mscan.php:1951 admin/mscan/mscan.php:1970
|
8566 |
msgid "in DB Column"
|
8567 |
msgstr ""
|
8568 |
|
8569 |
+
#: admin/mscan/mscan.php:1951
|
8570 |
msgid "This DB Entry will not be scanned in any future MScan Scans."
|
8571 |
msgstr ""
|
8572 |
|
8573 |
+
#: admin/mscan/mscan.php:1970
|
8574 |
msgid "The Ignored DB Entry Status has been removed for DB Row ID"
|
8575 |
msgstr ""
|
8576 |
|
8577 |
+
#: admin/mscan/mscan.php:1970
|
8578 |
msgid ""
|
8579 |
"The previous Status of the DB Entry will be displayed again and this DB "
|
8580 |
"Entry will be scanned in future MScan scans."
|
8581 |
msgstr ""
|
8582 |
|
8583 |
+
#: admin/mscan/mscan.php:1989 admin/mscan/mscan.php:1994
|
8584 |
msgid "Close"
|
8585 |
msgstr ""
|
8586 |
|
8587 |
+
#: admin/mscan/mscan.php:1989
|
8588 |
msgid "Pharma Hack DB Table and Column"
|
8589 |
msgstr ""
|
8590 |
|
8591 |
+
#: admin/mscan/mscan.php:1989
|
8592 |
msgid "Pharma Hack cleanup/removal steps"
|
8593 |
msgstr ""
|
8594 |
|
8595 |
+
#: admin/mscan/mscan.php:1989
|
8596 |
msgid "Edit your theme's header.php file and delete this code: "
|
8597 |
msgstr ""
|
8598 |
|
8599 |
+
#: admin/mscan/mscan.php:1989
|
8600 |
msgid ""
|
8601 |
"Delete this file in your theme's root folder: nav.php. Login to your web "
|
8602 |
"host control panel, login to your WP Database using phpMyAdmin and delete "
|
8605 |
"any that you do see."
|
8606 |
msgstr ""
|
8607 |
|
8608 |
+
#: admin/mscan/mscan.php:1994
|
8609 |
msgid "DB Table, Column and Row ID"
|
8610 |
msgstr ""
|
8611 |
|
8612 |
+
#: admin/mscan/mscan.php:1994
|
8613 |
msgid "Steps to view the database data that MScan detected as suspicious"
|
8614 |
msgstr ""
|
8615 |
|
8616 |
+
#: admin/mscan/mscan.php:1994
|
8617 |
msgid ""
|
8618 |
"Login to your web host control panel, login to your WP Database using "
|
8619 |
"phpMyAdmin and check the data in the DB Table, Column and Row ID shown "
|
8620 |
"above. Note: Look for code that matches the MScan Pattern Match."
|
8621 |
msgstr ""
|
8622 |
|
8623 |
+
#: admin/mscan/mscan.php:2005 admin/mscan/mscan.php:2807
|
8624 |
+
#: admin/mscan/mscan.php:3602
|
8625 |
msgid "Database scanning uses pattern matching scanning."
|
8626 |
msgstr ""
|
8627 |
|
8628 |
+
#: admin/mscan/mscan.php:2005 admin/mscan/mscan.php:2807
|
8629 |
+
#: admin/mscan/mscan.php:3602
|
8630 |
msgid ""
|
8631 |
"Pattern matching scan results will usually detect some false positive "
|
8632 |
"matches."
|
8633 |
msgstr ""
|
8634 |
|
8635 |
+
#: admin/mscan/mscan.php:2005
|
8636 |
msgid ""
|
8637 |
"This form allows you to view, ignore or unignore suspicious DB Entries. "
|
8638 |
"Note: The view option displays the DB Table, Column, Row ID and the MScan "
|
8639 |
"Pattern Match that was detected by the MScan scan."
|
8640 |
msgstr ""
|
8641 |
|
8642 |
+
#: admin/mscan/mscan.php:2005
|
8643 |
msgid "Before deleting any database data make a backup of your database."
|
8644 |
msgstr ""
|
8645 |
|
8646 |
+
#: admin/mscan/mscan.php:2005 admin/mscan/mscan.php:2807
|
8647 |
+
#: admin/mscan/mscan.php:3602
|
8648 |
msgid ""
|
8649 |
"Use phpMyAdmin or a similar tool to check your database Row where the "
|
8650 |
"suspicious code was found."
|
8651 |
msgstr ""
|
8652 |
|
8653 |
+
#: admin/mscan/mscan.php:2005 admin/mscan/mscan.php:2807
|
8654 |
+
#: admin/mscan/mscan.php:3602
|
8655 |
msgid ""
|
8656 |
"When you ignore a DB Entry it will no longer be scanned in any future scans. "
|
8657 |
"When you unignore an ignored DB Entry it will be scanned in future scans."
|
8658 |
msgstr ""
|
8659 |
|
8660 |
+
#: admin/mscan/mscan.php:2020
|
8661 |
msgid "View<br>DB Entry"
|
8662 |
msgstr ""
|
8663 |
|
8664 |
+
#: admin/mscan/mscan.php:2021
|
8665 |
msgid "Ignore<br>DB Entry"
|
8666 |
msgstr ""
|
8667 |
|
8668 |
+
#: admin/mscan/mscan.php:2022
|
8669 |
msgid "Unignore<br>DB Entry"
|
8670 |
msgstr ""
|
8671 |
|
8672 |
+
#: admin/mscan/mscan.php:2023 admin/mscan/mscan.php:2821
|
8673 |
+
#: admin/mscan/mscan.php:3612
|
8674 |
msgid "DB Table"
|
8675 |
msgstr ""
|
8676 |
|
8677 |
+
#: admin/mscan/mscan.php:2024 admin/mscan/mscan.php:2822
|
8678 |
+
#: admin/mscan/mscan.php:3613
|
8679 |
msgid "DB Column"
|
8680 |
msgstr ""
|
8681 |
|
8682 |
+
#: admin/mscan/mscan.php:2025 admin/mscan/mscan.php:2823
|
8683 |
+
#: admin/mscan/mscan.php:3614
|
8684 |
msgid "DB Row ID"
|
8685 |
msgstr ""
|
8686 |
|
8687 |
+
#: admin/mscan/mscan.php:2026
|
8688 |
msgid "Pattern<br>Match"
|
8689 |
msgstr ""
|
8690 |
|
8691 |
+
#: admin/mscan/mscan.php:2038 admin/mscan/mscan.php:2836
|
8692 |
msgid "Ignored DB Entry"
|
8693 |
msgstr ""
|
8694 |
|
8695 |
+
#: admin/mscan/mscan.php:2043 admin/mscan/mscan.php:2841
|
8696 |
msgid "Suspicious DB Entry"
|
8697 |
msgstr ""
|
8698 |
|
8699 |
+
#: admin/mscan/mscan.php:2061 admin/mscan/mscan.php:2858
|
8700 |
msgid "No Suspicious DB Entries were detected"
|
8701 |
msgstr ""
|
8702 |
|
8703 |
+
#: admin/mscan/mscan.php:2076
|
8704 |
msgid ""
|
8705 |
"View DB Entry Option: Selecting the View DB Entry Checkbox Form option will "
|
8706 |
"display the contents of the DB Table, Column and Row ID that you have "
|
8718 |
"OK to proceed or click Cancel"
|
8719 |
msgstr ""
|
8720 |
|
8721 |
+
#: admin/mscan/mscan.php:2167
|
8722 |
msgid "Click the Reset Last Modified Time in DB button"
|
8723 |
msgstr ""
|
8724 |
|
8725 |
+
#: admin/mscan/mscan.php:2167
|
8726 |
msgid "to set the"
|
8727 |
msgstr ""
|
8728 |
|
8729 |
+
#: admin/mscan/mscan.php:2172 admin/mscan/mscan.php:2177
|
8730 |
msgid "Last Modified Time in DB:"
|
8731 |
msgstr ""
|
8732 |
|
8733 |
+
#: admin/mscan/mscan.php:2190 admin/mscan/mscan.php:2195
|
8734 |
msgid "MScan Log File Size: "
|
8735 |
msgstr ""
|
8736 |
|
8737 |
+
#: admin/mscan/mscan.php:2195
|
8738 |
msgid ""
|
8739 |
"The Display & Alert Options Email Logging options will only send log files "
|
8740 |
"up to 2MB in size."
|
8741 |
msgstr ""
|
8742 |
|
8743 |
+
#: admin/mscan/mscan.php:2195
|
8744 |
msgid ""
|
8745 |
"Copy and paste the MScan Log file contents into a Notepad text file on your "
|
8746 |
"computer and save it."
|
8747 |
msgstr ""
|
8748 |
|
8749 |
+
#: admin/mscan/mscan.php:2208
|
8750 |
msgid "MScan Log Last Modified Time:"
|
8751 |
msgstr ""
|
8752 |
|
8753 |
+
#: admin/mscan/mscan.php:2210
|
8754 |
msgid "Last Modified Time in File:"
|
8755 |
msgstr ""
|
8756 |
|
8757 |
+
#: admin/mscan/mscan.php:2229
|
8758 |
msgid ""
|
8759 |
"Success! Your MScan Log has been deleted and replaced with a new blank MScan "
|
8760 |
"Log file."
|
8761 |
msgstr ""
|
8762 |
|
8763 |
+
#: admin/mscan/mscan.php:2239
|
8764 |
msgid "Clicking OK will delete the contents of your MScan Log file."
|
8765 |
msgstr ""
|
8766 |
|
8767 |
+
#: admin/mscan/mscan.php:2258
|
8768 |
msgid ""
|
8769 |
"The MScan Log File Was Not Found! Check that the file really exists here - /"
|
8770 |
msgstr ""
|
8771 |
|
8772 |
+
#: admin/mscan/mscan.php:2258
|
8773 |
msgid "/bps-backup/logs/mscan_log.txt and is named correctly."
|
8774 |
msgstr ""
|
8775 |
|
8776 |
+
#: admin/mscan/mscan.php:2280
|
8777 |
msgid "File Open and Write test successful! Your MScan Log file is writable."
|
8778 |
msgstr ""
|
8779 |
|
8780 |
+
#: admin/mscan/mscan.php:2294 admin/mscan/mscan.php:2298
|
8781 |
msgid "Success! Your MScan Log file has been updated."
|
8782 |
msgstr ""
|
8783 |
|
8784 |
+
#: admin/mscan/mscan.php:2377
|
8785 |
msgid "Click OK to save the MScan Report or click Cancel."
|
8786 |
msgstr ""
|
8787 |
|
8788 |
+
#: admin/mscan/mscan.php:2397
|
8789 |
msgid ""
|
8790 |
"No Scan Results To Display: No scans have been run yet or you clicked the "
|
8791 |
"MScan Reset button."
|
8792 |
msgstr ""
|
8793 |
|
8794 |
+
#: admin/mscan/mscan.php:2411
|
8795 |
msgid "Scan Date|Time: "
|
8796 |
msgstr ""
|
8797 |
|
8798 |
+
#: admin/mscan/mscan.php:2414
|
8799 |
msgid "Website: "
|
8800 |
msgstr ""
|
8801 |
|
8802 |
+
#: admin/mscan/mscan.php:2417
|
8803 |
msgid "Scan Completion Time: "
|
8804 |
msgstr ""
|
8805 |
|
8806 |
+
#: admin/mscan/mscan.php:2421 admin/mscan/mscan.php:2424
|
8807 |
+
#: admin/mscan/mscan.php:2427
|
8808 |
msgid "Total Files Scanned: "
|
8809 |
msgstr ""
|
8810 |
|
8811 |
+
#: admin/mscan/mscan.php:2432
|
8812 |
msgid "Total Skipped Files: "
|
8813 |
msgstr ""
|
8814 |
|
8815 |
+
#: admin/mscan/mscan.php:2441
|
8816 |
msgid "Total Suspicious Files: "
|
8817 |
msgstr ""
|
8818 |
|
8819 |
+
#: admin/mscan/mscan.php:2450
|
8820 |
msgid "Total Suspicious DB Entries: "
|
8821 |
msgstr ""
|
8822 |
|
8823 |
+
#: admin/mscan/mscan.php:2453 admin/mscan/mscan.php:3523
|
8824 |
msgid "MScan Option Settings: "
|
8825 |
msgstr ""
|
8826 |
|
8827 |
+
#: admin/mscan/mscan.php:2467 admin/mscan/mscan.php:2470
|
8828 |
msgid "Website Folders & Files To Scan: "
|
8829 |
msgstr ""
|
8830 |
|
8831 |
+
#: admin/mscan/mscan.php:2470 admin/mscan/mscan.php:2481
|
8832 |
+
#: admin/mscan/mscan.php:2508
|
8833 |
msgid "None"
|
8834 |
msgstr ""
|
8835 |
|
8836 |
+
#: admin/mscan/mscan.php:2478 admin/mscan/mscan.php:2481
|
8837 |
msgid "Excluded Folders: "
|
8838 |
msgstr ""
|
8839 |
|
8840 |
+
#: admin/mscan/mscan.php:2485
|
8841 |
msgid "Max File Size Limit to Scan: "
|
8842 |
msgstr ""
|
8843 |
|
8844 |
+
#: admin/mscan/mscan.php:2488
|
8845 |
msgid "Max Time Limit to Scan: "
|
8846 |
msgstr ""
|
8847 |
|
8848 |
+
#: admin/mscan/mscan.php:2491
|
8849 |
msgid "Scan Database: "
|
8850 |
msgstr ""
|
8851 |
|
8852 |
+
#: admin/mscan/mscan.php:2494
|
8853 |
msgid "Scan Skipped Files Only: "
|
8854 |
msgstr ""
|
8855 |
|
8856 |
+
#: admin/mscan/mscan.php:2497
|
8857 |
msgid "Automatically Delete /tmp Files: "
|
8858 |
msgstr ""
|
8859 |
|
8860 |
+
#: admin/mscan/mscan.php:2505 admin/mscan/mscan.php:2508
|
8861 |
msgid "Exclude /tmp Files: "
|
8862 |
msgstr ""
|
8863 |
|
8864 |
+
#: admin/mscan/mscan.php:2526
|
8865 |
msgid "Scheduled Scan Frequency: "
|
8866 |
msgstr ""
|
8867 |
|
8868 |
+
#: admin/mscan/mscan.php:2529 admin/mscan/mscan.php:3534
|
8869 |
msgid "WP Core|Plugin|Theme File Hashes: "
|
8870 |
msgstr ""
|
8871 |
|
8872 |
+
#: admin/mscan/mscan.php:2543
|
8873 |
msgid "WP Core Hash File Version: "
|
8874 |
msgstr ""
|
8875 |
|
8876 |
+
#: admin/mscan/mscan.php:2543
|
8877 |
msgid "WP Installed Version: "
|
8878 |
msgstr ""
|
8879 |
|
8880 |
+
#: admin/mscan/mscan.php:2548 admin/mscan/mscan.php:2568
|
8881 |
+
#: admin/mscan/mscan.php:2672
|
8882 |
msgid "Error|Problem: "
|
8883 |
msgstr ""
|
8884 |
|
8885 |
+
#: admin/mscan/mscan.php:2548
|
8886 |
msgid "The WP Core Hash File Does Not Exist"
|
8887 |
msgstr ""
|
8888 |
|
8889 |
+
#: admin/mscan/mscan.php:2562 admin/mscan/mscan.php:3537
|
8890 |
msgid "Plugin File Hashes: "
|
8891 |
msgstr ""
|
8892 |
|
8893 |
+
#: admin/mscan/mscan.php:2568
|
8894 |
msgid "The Plugin Hash File Does Not Exist"
|
8895 |
msgstr ""
|
8896 |
|
8897 |
+
#: admin/mscan/mscan.php:2628
|
8898 |
msgid ""
|
8899 |
"File hashes do not exist for this plugin. This plugin's files were not "
|
8900 |
"scanned. If you would like to scan this plugin's files then use the \"Upload "
|
8903 |
"\"Upload Plugin Zip Files\" help section for more help info."
|
8904 |
msgstr ""
|
8905 |
|
8906 |
+
#: admin/mscan/mscan.php:2630
|
8907 |
msgid ""
|
8908 |
"File hashes do not exist for this theme. This theme's files were not "
|
8909 |
"scanned. If you would like to scan this themes's files then use the \"Upload "
|
8912 |
"\"Upload Theme Zip Files\" help section for more help info."
|
8913 |
msgstr ""
|
8914 |
|
8915 |
+
#: admin/mscan/mscan.php:2640 admin/mscan/mscan.php:2650
|
8916 |
+
#: admin/mscan/mscan.php:2656
|
8917 |
msgid " Plugin Hash File Version: "
|
8918 |
msgstr ""
|
8919 |
|
8920 |
+
#: admin/mscan/mscan.php:2640 admin/mscan/mscan.php:2650
|
8921 |
+
#: admin/mscan/mscan.php:2656 admin/mscan/mscan.php:2696
|
8922 |
+
#: admin/mscan/mscan.php:2705 admin/mscan/mscan.php:2711
|
8923 |
msgid " Installed Version: "
|
8924 |
msgstr ""
|
8925 |
|
8926 |
+
#: admin/mscan/mscan.php:2656
|
8927 |
msgid "No File Hashes for This Plugin"
|
8928 |
msgstr ""
|
8929 |
|
8930 |
+
#: admin/mscan/mscan.php:2666 admin/mscan/mscan.php:3544
|
8931 |
msgid "Theme File Hashes: "
|
8932 |
msgstr ""
|
8933 |
|
8934 |
+
#: admin/mscan/mscan.php:2672
|
8935 |
msgid "The Theme Hash File Does Not Exist"
|
8936 |
msgstr ""
|
8937 |
|
8938 |
+
#: admin/mscan/mscan.php:2696 admin/mscan/mscan.php:2705
|
8939 |
+
#: admin/mscan/mscan.php:2711
|
8940 |
msgid " Theme Hash File Version: "
|
8941 |
msgstr ""
|
8942 |
|
8943 |
+
#: admin/mscan/mscan.php:2711
|
8944 |
msgid "No File Hashes for This Theme"
|
8945 |
msgstr ""
|
8946 |
|
8947 |
+
#: admin/mscan/mscan.php:2724 admin/mscan/mscan.php:3554
|
8948 |
msgid "Scan Results "
|
8949 |
msgstr ""
|
8950 |
|
8951 |
+
#: admin/mscan/mscan.php:2727 admin/mscan/mscan.php:3557
|
8952 |
msgid ""
|
8953 |
"You can View, Ignore and Delete files detected as suspicious using the View|"
|
8954 |
"Ignore|Delete Suspicious Files Form on the MScan Scan tab page. Before "
|
8956 |
"hosting account."
|
8957 |
msgstr ""
|
8958 |
|
8959 |
+
#: admin/mscan/mscan.php:2744 admin/mscan/mscan.php:3566
|
8960 |
msgid "File Hash or Pattern Match"
|
8961 |
msgstr ""
|
8962 |
|
8963 |
+
#: admin/mscan/mscan.php:2745 admin/mscan/mscan.php:2825
|
8964 |
+
#: admin/mscan/mscan.php:3567 admin/mscan/mscan.php:3616
|
8965 |
msgid "Scan Time"
|
8966 |
msgstr ""
|
8967 |
|
8968 |
+
#: admin/mscan/mscan.php:2807 admin/mscan/mscan.php:3602
|
8969 |
msgid ""
|
8970 |
"You can View, Ignore and Unignore suspicious DB Entries using the View|"
|
8971 |
"Ignore Suspicious DB Entries Form on the MScan Scan tab page. Before "
|
8972 |
"deleting any database data make a backup of your database."
|
8973 |
msgstr ""
|
8974 |
|
8975 |
+
#: admin/mscan/mscan.php:2824 admin/mscan/mscan.php:3615
|
8976 |
msgid "Pattern Match"
|
8977 |
msgstr ""
|
8978 |
|
8979 |
+
#: admin/mscan/mscan.php:2934 admin/mscan/mscan.php:3044
|
8980 |
msgid ""
|
8981 |
"The MScan Report was saved successfully. Saved MScan Reports can be viewed "
|
8982 |
"on the MScan Saved Reports tab page."
|
8983 |
msgstr ""
|
8984 |
|
8985 |
+
#: admin/mscan/mscan.php:2967
|
8986 |
msgid "The MScan Report was not saved"
|
8987 |
msgstr ""
|
8988 |
|
8989 |
+
#: admin/mscan/mscan.php:2967
|
8990 |
msgid ""
|
8991 |
"The maximum number of Reports that can be saved is 20 Reports. In order to "
|
8992 |
"save the current Report you will need to delete an older saved Report."
|
8993 |
msgstr ""
|
8994 |
|
8995 |
+
#: admin/mscan/mscan.php:3095
|
8996 |
msgid ""
|
8997 |
"No Saved MScan Reports To Display: No MScan Reports have been saved yet."
|
8998 |
msgstr ""
|
8999 |
|
9000 |
+
#: admin/mscan/mscan.php:3184
|
9001 |
msgid "MScan Saved Reports Form"
|
9002 |
msgstr ""
|
9003 |
|
9004 |
+
#: admin/mscan/mscan.php:3193
|
9005 |
msgid "Report Date"
|
9006 |
msgstr ""
|
9007 |
|
9008 |
+
#: admin/mscan/mscan.php:3194
|
9009 |
msgid "View Report"
|
9010 |
msgstr ""
|
9011 |
|
9012 |
+
#: admin/mscan/mscan.php:3195
|
9013 |
msgid "Delete Report"
|
9014 |
msgstr ""
|
9015 |
|
9016 |
+
#: admin/mscan/mscan.php:3216
|
9017 |
msgid "Click OK to proceed or click Cancel"
|
9018 |
msgstr ""
|
9019 |
|
9020 |
+
#: admin/mscan/mscan.php:3241
|
9021 |
msgid "View|Delete Reports"
|
9022 |
msgstr ""
|
9023 |
|
9024 |
+
#: admin/mscan/mscan.php:3260
|
9025 |
msgid "You did not select an MScan Report to view or delete"
|
9026 |
msgstr ""
|
9027 |
|
9028 |
+
#: admin/mscan/mscan.php:3260
|
9029 |
msgid ""
|
9030 |
"Click the checkbox for the MScan Report that you would like to view or "
|
9031 |
"delete and then click the View|Delete Reports button."
|
9032 |
msgstr ""
|
9033 |
|
9034 |
+
#: admin/mscan/mscan.php:3421
|
9035 |
msgid "Report: "
|
9036 |
msgstr ""
|
9037 |
|
9038 |
+
#: admin/mscan/mscan.php:3421
|
9039 |
msgid ""
|
9040 |
" has been deleted. Refresh/reload the page to see current MScan Saved "
|
9041 |
"Reports Form data."
|
9042 |
msgstr ""
|
9043 |
|
9044 |
+
#: admin/mscan/mscan.php:3429
|
9045 |
msgid ""
|
9046 |
"The MScan Saved Report scan data is displayed below the MScan Saved Reports "
|
9047 |
"Form."
|
9073 |
msgid "Logging has been turned On"
|
9074 |
msgstr ""
|
9075 |
|
9076 |
+
#: admin/security-log/security-log.php:229
|
9077 |
msgid "Forum Help Links & Bonus Custom Code: "
|
9078 |
msgstr ""
|
9079 |
|
9080 |
+
#: admin/security-log/security-log.php:233
|
9081 |
msgid "POST Request Attack Protection"
|
9082 |
msgstr ""
|
9083 |
|
9084 |
+
#: admin/security-log/security-log.php:235
|
9085 |
msgid "Security Log General Information"
|
9086 |
msgstr ""
|
9087 |
|
9088 |
+
#: admin/security-log/security-log.php:235
|
9089 |
msgid ""
|
9090 |
"To view your Security Log click the View Log button. Your Security Log file "
|
9091 |
"is a plain text static file and not a dynamic file or dynamic display to "
|
9094 |
"and Time. You can copy, edit and delete this plain text file."
|
9095 |
msgstr ""
|
9096 |
|
9097 |
+
#: admin/security-log/security-log.php:235
|
9098 |
msgid ""
|
9099 |
"Security Log Email Alert and Log file option settings are on the Alerts|Logs|"
|
9100 |
"Email Options page."
|
9101 |
msgstr ""
|
9102 |
|
9103 |
+
#: admin/security-log/security-log.php:235
|
9104 |
msgid ""
|
9105 |
"If a particular User Agent|Bot is generating excessive log entries you can "
|
9106 |
"add it to Add User Agents|Bots to Ignore|Not Log tool and that User Agent|"
|
9108 |
"help section."
|
9109 |
msgstr ""
|
9110 |
|
9111 |
+
#: admin/security-log/security-log.php:235
|
9112 |
msgid ""
|
9113 |
"BPS logs all 403 errors, but a 403 error may not necessarily be caused by "
|
9114 |
"BPS. Use the troubleshooting steps in the BPS Troubleshooting Steps link at "
|
9116 |
"403 error is being caused by BPS."
|
9117 |
msgstr ""
|
9118 |
|
9119 |
+
#: admin/security-log/security-log.php:235
|
9120 |
msgid ""
|
9121 |
"The Security Log logs 400, 403, 405 and 410 HTTP Response Status Codes by "
|
9122 |
"default. You can also log 404 HTTP Response Status Codes by opening this BPS "
|
9127 |
"the "
|
9128 |
msgstr ""
|
9129 |
|
9130 |
+
#: admin/security-log/security-log.php:235
|
9131 |
+
#: admin/security-log/security-log.php:259
|
9132 |
msgid "Total # of Security Log Entries by Type"
|
9133 |
msgstr ""
|
9134 |
|
9135 |
+
#: admin/security-log/security-log.php:235
|
9136 |
msgid ""
|
9137 |
" help section below for a complete list of BPS Security Log Entry Types."
|
9138 |
msgstr ""
|
9139 |
|
9140 |
+
#: admin/security-log/security-log.php:235
|
9141 |
msgid ""
|
9142 |
"Displays the total number of each type of Security Log Entry in your "
|
9143 |
"Security Log file. The Total # of Security Log Entries by Type is also added "
|
9150 |
"Security Log Entry Types. BPS Pro has a total of 27 Security Log Entry Types."
|
9151 |
msgstr ""
|
9152 |
|
9153 |
+
#: admin/security-log/security-log.php:235
|
9154 |
msgid "HTTP Response Status Codes"
|
9155 |
msgstr ""
|
9156 |
|
9157 |
+
#: admin/security-log/security-log.php:235
|
9158 |
msgid ""
|
9159 |
"400 Bad Request - The request could not be understood by the server due to "
|
9160 |
"malformed syntax."
|
9161 |
msgstr ""
|
9162 |
|
9163 |
+
#: admin/security-log/security-log.php:235
|
9164 |
msgid ""
|
9165 |
"403 Forbidden - The Server understood the request, but is refusing to "
|
9166 |
"fulfill it."
|
9167 |
msgstr ""
|
9168 |
|
9169 |
+
#: admin/security-log/security-log.php:235
|
9170 |
msgid ""
|
9171 |
"404 Not Found - The Server has not found anything matching the Request-URI|"
|
9172 |
"URL. No indication is given of whether the condition is temporary or "
|
9173 |
"permanent."
|
9174 |
msgstr ""
|
9175 |
|
9176 |
+
#: admin/security-log/security-log.php:235
|
9177 |
msgid ""
|
9178 |
"405 Method Not Allowed - The method specified in the Request-Line is not "
|
9179 |
"allowed for the resource identified by the Request-URI. The response MUST "
|
9183 |
"Methods."
|
9184 |
msgstr ""
|
9185 |
|
9186 |
+
#: admin/security-log/security-log.php:235
|
9187 |
msgid ""
|
9188 |
"410 Gone - The requested resource is no longer available at the Server/site "
|
9189 |
"and no forwarding address is known. This condition is expected to be "
|
9190 |
"considered permanent."
|
9191 |
msgstr ""
|
9192 |
|
9193 |
+
#: admin/security-log/security-log.php:235
|
9194 |
msgid "Security Log File Size"
|
9195 |
msgstr ""
|
9196 |
|
9197 |
+
#: admin/security-log/security-log.php:235
|
9198 |
msgid ""
|
9199 |
"Displays the size of your Security Log file. 500KB is the optimum "
|
9200 |
"recommended log file size setting that you should choose for your log file "
|
9202 |
"Log file."
|
9203 |
msgstr ""
|
9204 |
|
9205 |
+
#: admin/security-log/security-log.php:235
|
9206 |
msgid "Security Log Status:"
|
9207 |
msgstr ""
|
9208 |
|
9209 |
+
#: admin/security-log/security-log.php:235
|
9210 |
msgid "Displays either Logging is Turned On or Logging is Turned Off."
|
9211 |
msgstr ""
|
9212 |
|
9213 |
+
#: admin/security-log/security-log.php:235
|
9214 |
msgid "Security Log Last Modified Time:"
|
9215 |
msgstr ""
|
9216 |
|
9217 |
+
#: admin/security-log/security-log.php:235
|
9218 |
msgid "Displays the last time a Security Log entry was logged."
|
9219 |
msgstr ""
|
9220 |
|
9221 |
+
#: admin/security-log/security-log.php:235
|
9222 |
msgid "Turn Off Logging"
|
9223 |
msgstr ""
|
9224 |
|
9225 |
+
#: admin/security-log/security-log.php:235
|
9226 |
msgid "Turns Off HTTP 400, 403, 404, 405 & 410 Security Logging."
|
9227 |
msgstr ""
|
9228 |
|
9229 |
+
#: admin/security-log/security-log.php:235
|
9230 |
msgid "Turn On Logging"
|
9231 |
msgstr ""
|
9232 |
|
9233 |
+
#: admin/security-log/security-log.php:235
|
9234 |
msgid "Turns On HTTP 400, 403, 404, 405 & 410 Security Logging."
|
9235 |
msgstr ""
|
9236 |
|
9237 |
+
#: admin/security-log/security-log.php:235
|
9238 |
msgid ""
|
9239 |
"Clicking the Delete Log button will delete the entire contents of your "
|
9240 |
"Security Log File."
|
9241 |
msgstr ""
|
9242 |
|
9243 |
+
#: admin/security-log/security-log.php:235
|
9244 |
+
#: admin/security-log/security-log.php:441
|
9245 |
msgid "POST Request Body Data"
|
9246 |
msgstr ""
|
9247 |
|
9248 |
+
#: admin/security-log/security-log.php:235
|
9249 |
msgid ""
|
9250 |
"The POST Request Body Data option settings only affect the REQUEST BODY "
|
9251 |
"Security Log field in your Security Log entries when a POST Request is "
|
9256 |
"but not all POST Request Attacks will be captured/logged in the Security Log."
|
9257 |
msgstr ""
|
9258 |
|
9259 |
+
#: admin/security-log/security-log.php:235
|
9260 |
msgid ""
|
9261 |
"The default POST Request Body Data option setting is \"Do Not Log POST "
|
9262 |
"Request Body Data (0KB)\", which means do not capture/log the POST Request "
|
9271 |
"Maximum...\" POST Request Body Data option settings."
|
9272 |
msgstr ""
|
9273 |
|
9274 |
+
#: admin/security-log/security-log.php:235
|
9275 |
msgid ""
|
9276 |
"The \"Log Minimum POST Request Body Data (5KB)\" option setting will capture/"
|
9277 |
"log the first 500 characters or 5KB of hacker code used to attack your "
|
9283 |
"field. Hacker scripts typically range in size from 20KB to 100KB on average."
|
9284 |
msgstr ""
|
9285 |
|
9286 |
+
#: admin/security-log/security-log.php:235
|
9287 |
msgid ""
|
9288 |
"If you are using email security protection on your computer then your "
|
9289 |
"automatically zipped and emailed BPS Security Log files may be seen as "
|
9296 |
"option setting instead."
|
9297 |
msgstr ""
|
9298 |
|
9299 |
+
#: admin/security-log/security-log.php:235
|
9300 |
msgid ""
|
9301 |
"Ignoring|Not Logging User Agents|Bots - Allowing|Logging User Agents|Bots"
|
9302 |
msgstr ""
|
9303 |
|
9304 |
+
#: admin/security-log/security-log.php:235
|
9305 |
msgid ""
|
9306 |
"Adding or Removing User Agents|Bots adds or removes User Agents|Bots to your "
|
9307 |
"Database and also writes new code to the 403.php Security Logging template. "
|
9316 |
"file."
|
9317 |
msgstr ""
|
9318 |
|
9319 |
+
#: admin/security-log/security-log.php:235
|
9320 |
msgid ""
|
9321 |
"If a particular User Agent|Bot is being logged excessively in your Security "
|
9322 |
"Log file you can Ignore|Not Log that particular User Agent|Bot based on the "
|
9329 |
"facebook User Agent|Bot."
|
9330 |
msgstr ""
|
9331 |
|
9332 |
+
#: admin/security-log/security-log.php:235
|
9333 |
+
#: admin/security-log/security-log.php:456
|
9334 |
msgid "Add User Agents|Bots to Ignore|Not Log"
|
9335 |
msgstr ""
|
9336 |
|
9337 |
+
#: admin/security-log/security-log.php:235
|
9338 |
msgid ""
|
9339 |
"Add the User Agent|Bot names you would like to Ignore|Not Log in your "
|
9340 |
"Security Log. These code characters are not allowed to be used: "
|
9341 |
msgstr ""
|
9342 |
|
9343 |
+
#: admin/security-log/security-log.php:235
|
9344 |
msgid "Removing User Agents|Bots to Allow|Log"
|
9345 |
msgstr ""
|
9346 |
|
9347 |
+
#: admin/security-log/security-log.php:235
|
9348 |
msgid ""
|
9349 |
"To search for ALL User Agents|Bots to remove/delete from your database leave "
|
9350 |
"the text box blank and click the Remove|Allow button. You will see a "
|
9357 |
"Agents|Bots logged again in your Security Log."
|
9358 |
msgstr ""
|
9359 |
|
9360 |
+
#: admin/security-log/security-log.php:235
|
9361 |
msgid "View Log"
|
9362 |
msgstr ""
|
9363 |
|
9364 |
+
#: admin/security-log/security-log.php:235
|
9365 |
msgid ""
|
9366 |
"In previous versions of BPS the Security Log was displayed open by default. "
|
9367 |
"The Security Log is now closed by default due to problems with ModSecurity "
|
9371 |
"file manager and opening the Security Log file located here "
|
9372 |
msgstr ""
|
9373 |
|
9374 |
+
#: admin/security-log/security-log.php:235
|
9375 |
msgid ""
|
9376 |
"The new View Log feature also resolves another problem, which is if the "
|
9377 |
"Security Log file automation is not working due to WP Cron jobs being "
|
9384 |
"button."
|
9385 |
msgstr ""
|
9386 |
|
9387 |
+
#: admin/security-log/security-log.php:262
|
9388 |
msgid "There are no Security Log Entries yet."
|
9389 |
msgstr ""
|
9390 |
|
9391 |
+
#: admin/security-log/security-log.php:270
|
9392 |
msgid "Total "
|
9393 |
msgstr ""
|
9394 |
|
9395 |
+
#: admin/security-log/security-log.php:270
|
9396 |
msgid " Log Entries: "
|
9397 |
msgstr ""
|
9398 |
|
9399 |
+
#: admin/security-log/security-log.php:289
|
9400 |
+
#: admin/security-log/security-log.php:292
|
9401 |
msgid "Security Log File Size: "
|
9402 |
msgstr ""
|
9403 |
|
9404 |
+
#: admin/security-log/security-log.php:292
|
9405 |
msgid ""
|
9406 |
"Your Security Log file is larger than 2MB. It appears that BPS is unable to "
|
9407 |
"automatically zip, email and delete your Security Log file."
|
9408 |
msgstr ""
|
9409 |
|
9410 |
+
#: admin/security-log/security-log.php:292
|
9411 |
msgid "Check your Email Alerts & Log File Options."
|
9412 |
msgstr ""
|
9413 |
|
9414 |
+
#: admin/security-log/security-log.php:292
|
9415 |
msgid ""
|
9416 |
"You can manually delete the contents of this log file by clicking the Delete "
|
9417 |
"Log button."
|
9418 |
msgstr ""
|
9419 |
|
9420 |
+
#: admin/security-log/security-log.php:307
|
9421 |
+
#: admin/security-log/security-log.php:310
|
9422 |
msgid "Security Log Status: "
|
9423 |
msgstr ""
|
9424 |
|
9425 |
+
#: admin/security-log/security-log.php:307
|
9426 |
msgid "Logging is Turned Off"
|
9427 |
msgstr ""
|
9428 |
|
9429 |
+
#: admin/security-log/security-log.php:310
|
9430 |
msgid "Logging is Turned On"
|
9431 |
msgstr ""
|
9432 |
|
9433 |
+
#: admin/security-log/security-log.php:325
|
9434 |
msgid "Security Log Last Modified Time: "
|
9435 |
msgstr ""
|
9436 |
|
9437 |
+
#: admin/security-log/security-log.php:341
|
9438 |
msgid ""
|
9439 |
"Success! Your Security Log file has been deleted and replaced with a new "
|
9440 |
"blank Security Log file."
|
9441 |
msgstr ""
|
9442 |
|
9443 |
+
#: admin/security-log/security-log.php:361
|
9444 |
msgid "Error: "
|
9445 |
msgstr ""
|
9446 |
|
9447 |
+
#: admin/security-log/security-log.php:361
|
9448 |
msgid ""
|
9449 |
" User Agent|Bot was not successfully added. These code characters are not "
|
9450 |
"allowed to be used: "
|
9451 |
msgstr ""
|
9452 |
|
9453 |
+
#: admin/security-log/security-log.php:361
|
9454 |
msgid " Click the Read Help button for examples of valid User Agent|Bot names."
|
9455 |
msgstr ""
|
9456 |
|
9457 |
+
#: admin/security-log/security-log.php:372
|
9458 |
msgid "Success! "
|
9459 |
msgstr ""
|
9460 |
|
9461 |
+
#: admin/security-log/security-log.php:372
|
9462 |
msgid " User Agent|Bot has been added to your DB. "
|
9463 |
msgstr ""
|
9464 |
|
9465 |
+
#: admin/security-log/security-log.php:379
|
9466 |
msgid ""
|
9467 |
"Error: You did not enter a User Agent|Bot name. User Agent|Bot was not "
|
9468 |
"successfully added."
|
9469 |
msgstr ""
|
9470 |
|
9471 |
+
#: admin/security-log/security-log.php:386
|
9472 |
+
#: admin/security-log/security-log.php:534 admin/wizard/wizard.php:260
|
9473 |
#: admin/wizard/wizard.php:266 admin/wizard/wizard.php:272
|
9474 |
#: admin/wizard/wizard.php:278 admin/wizard/wizard.php:284
|
9475 |
msgid "Error: The "
|
9476 |
msgstr ""
|
9477 |
|
9478 |
+
#: admin/security-log/security-log.php:386
|
9479 |
+
#: admin/security-log/security-log.php:534
|
9480 |
msgid " does not exist."
|
9481 |
msgstr ""
|
9482 |
|
9483 |
+
#: admin/security-log/security-log.php:414
|
9484 |
+
#: admin/security-log/security-log.php:547
|
9485 |
+
#: admin/security-log/security-log.php:614
|
9486 |
msgid "Error: Unable to write to file "
|
9487 |
msgstr ""
|
9488 |
|
9489 |
+
#: admin/security-log/security-log.php:414
|
9490 |
+
#: admin/security-log/security-log.php:547
|
9491 |
+
#: admin/security-log/security-log.php:614
|
9492 |
msgid ""
|
9493 |
". Check that file permissions allow writing to this file. If you have a DSO "
|
9494 |
"Server check file and folder Ownership."
|
9495 |
msgstr ""
|
9496 |
|
9497 |
+
#: admin/security-log/security-log.php:421
|
9498 |
msgid ""
|
9499 |
"Success! The BPS 403.php Security Logging template file has been updated. "
|
9500 |
"This User Agent|Bot will be no longer be logged in your Security Log."
|
9501 |
msgstr ""
|
9502 |
|
9503 |
+
#: admin/security-log/security-log.php:442
|
9504 |
msgid " Do Not Log POST Request Body Data (0KB)"
|
9505 |
msgstr ""
|
9506 |
|
9507 |
+
#: admin/security-log/security-log.php:443
|
9508 |
msgid " Log Minimum POST Request Body Data (5KB)"
|
9509 |
msgstr ""
|
9510 |
|
9511 |
+
#: admin/security-log/security-log.php:444
|
9512 |
msgid " Log Maximum POST Request Body Data (250KB)"
|
9513 |
msgstr ""
|
9514 |
|
9515 |
+
#: admin/security-log/security-log.php:457
|
9516 |
msgid "Click the Question Mark Help button for examples"
|
9517 |
msgstr ""
|
9518 |
|
9519 |
+
#: admin/security-log/security-log.php:459
|
9520 |
msgid ""
|
9521 |
"Clicking OK will Add the User Agent|Bot name you have entered to your DB and "
|
9522 |
"the 403.php Security Logging template."
|
9523 |
msgstr ""
|
9524 |
|
9525 |
+
#: admin/security-log/security-log.php:459
|
9526 |
msgid ""
|
9527 |
"Security logging checks are done by the 403.php Security Logging file and "
|
9528 |
"not by DB Queries."
|
9529 |
msgstr ""
|
9530 |
|
9531 |
+
#: admin/security-log/security-log.php:459
|
9532 |
msgid ""
|
9533 |
"To remove User Agents|Bots from being ignored/not logged use the Remove|"
|
9534 |
"Allow tool."
|
9535 |
msgstr ""
|
9536 |
|
9537 |
+
#: admin/security-log/security-log.php:473
|
9538 |
msgid "Remove User Agents|Bots to Allow|Log"
|
9539 |
msgstr ""
|
9540 |
|
9541 |
+
#: admin/security-log/security-log.php:475
|
9542 |
msgid ""
|
9543 |
"Clicking OK will search your database and display User Agent|Bot DB search "
|
9544 |
"results in a Dynamic Radio button Form."
|
9545 |
msgstr ""
|
9546 |
|
9547 |
+
#: admin/security-log/security-log.php:475
|
9548 |
msgid ""
|
9549 |
"To search for ALL User Agents|Bots to remove/delete from your database leave "
|
9550 |
"the text box blank and click the Remove|Allow button."
|
9551 |
msgstr ""
|
9552 |
|
9553 |
+
#: admin/security-log/security-log.php:489
|
9554 |
msgid "Click OK to Turn Off Error Logging or click Cancel."
|
9555 |
msgstr ""
|
9556 |
|
9557 |
+
#: admin/security-log/security-log.php:499
|
9558 |
msgid "Click OK to Turn On Logging or click Cancel."
|
9559 |
msgstr ""
|
9560 |
|
9561 |
+
#: admin/security-log/security-log.php:509
|
9562 |
msgid "Clicking OK will delete the contents of your Security Log file."
|
9563 |
msgstr ""
|
9564 |
|
9565 |
+
#: admin/security-log/security-log.php:570
|
9566 |
+
#: admin/security-log/security-log.php:673
|
9567 |
msgid "Remove"
|
9568 |
msgstr ""
|
9569 |
|
9570 |
+
#: admin/security-log/security-log.php:592
|
9571 |
#, php-format
|
9572 |
msgid "%s unable to delete row from your DB."
|
9573 |
msgstr ""
|
9574 |
|
9575 |
+
#: admin/security-log/security-log.php:594
|
9576 |
#, php-format
|
9577 |
msgid "%s has been deleted from your DB."
|
9578 |
msgstr ""
|
9579 |
|
9580 |
+
#: admin/security-log/security-log.php:629
|
9581 |
msgid ""
|
9582 |
"Success! The BPS 403.php Security Logging template file has been updated. "
|
9583 |
"This User Agent|Bot will be logged again in your Security Log."
|
9584 |
msgstr ""
|
9585 |
|
9586 |
+
#: admin/security-log/security-log.php:657
|
9587 |
msgid "Error: These code characters are not allowed to be used: "
|
9588 |
msgstr ""
|
9589 |
|
9590 |
+
#: admin/security-log/security-log.php:668
|
9591 |
msgid "Search Results For User Agents|Bots To Remove"
|
9592 |
msgstr ""
|
9593 |
|
9594 |
+
#: admin/security-log/security-log.php:672
|
9595 |
msgid "User Agents|Bots in DB"
|
9596 |
msgstr ""
|
9597 |
|
9598 |
+
#: admin/security-log/security-log.php:674
|
9599 |
msgid "Do Not<br>Remove"
|
9600 |
msgstr ""
|
9601 |
|
9602 |
+
#: admin/security-log/security-log.php:675
|
9603 |
msgid "Time Added<br>To DB"
|
9604 |
msgstr ""
|
9605 |
|
9606 |
+
#: admin/security-log/security-log.php:695
|
9607 |
msgid ""
|
9608 |
"Your DB Search Results For User Agents|Bots To Remove are displayed below "
|
9609 |
"the Remove|Allow Search tool."
|
9610 |
msgstr ""
|
9611 |
|
9612 |
+
#: admin/security-log/security-log.php:699
|
9613 |
msgid ""
|
9614 |
"You do not have any User Agents|Bots in your DB To Remove. An empty/blank "
|
9615 |
"dynamic radio button form is displayed below the Remove|Allow Search tool "
|
9616 |
"since you do not have any User Agents|Bot to remove."
|
9617 |
msgstr ""
|
9618 |
|
9619 |
+
#: admin/security-log/security-log.php:706
|
9620 |
msgid ""
|
9621 |
"Clicking OK will Remove the User Agent|Bot DB entries for any Remove Radio "
|
9622 |
"button selections you have made. User Agents|Bots will also be removed from "
|
9623 |
"the 403.php Security Logging template."
|
9624 |
msgstr ""
|
9625 |
|
9626 |
+
#: admin/security-log/security-log.php:706
|
9627 |
msgid "To add a User Agent|Bot, use the Add|Ignore tool."
|
9628 |
msgstr ""
|
9629 |
|
9630 |
+
#: admin/security-log/security-log.php:718
|
9631 |
msgid "Clicking OK will display the contents of your Security Log file."
|
9632 |
msgstr ""
|
9633 |
|
9634 |
+
#: admin/security-log/security-log.php:718
|
9635 |
msgid "Click OK to view the Log file or click Cancel."
|
9636 |
msgstr ""
|
9637 |
|
9638 |
+
#: admin/security-log/security-log.php:746
|
9639 |
msgid ""
|
9640 |
"The Security Log File Was Not Found! Check that the file really exists here "
|
9641 |
"- /"
|
9642 |
msgstr ""
|
9643 |
|
9644 |
+
#: admin/security-log/security-log.php:746
|
9645 |
msgid "/bps-backup/logs/http_error_log.txt and is named correctly."
|
9646 |
msgstr ""
|
9647 |
|
9648 |
+
#: admin/security-log/security-log.php:766
|
9649 |
msgid ""
|
9650 |
"File Open and Write test successful! Your Security Log file is writable. "
|
9651 |
"Click the View Log button."
|
9652 |
msgstr ""
|
9653 |
|
9654 |
+
#: admin/security-log/security-log.php:792
|
9655 |
+
#: admin/security-log/security-log.php:796
|
9656 |
msgid "Success! Your Security Log file has been updated."
|
9657 |
msgstr ""
|
9658 |
|
9668 |
msgid "File|Folder Permissions & UID"
|
9669 |
msgstr ""
|
9670 |
|
9671 |
+
#: admin/system-info/system-info.php:89
|
9672 |
msgid "DSO Server Setup Steps"
|
9673 |
msgstr ""
|
9674 |
|
9675 |
+
#: admin/system-info/system-info.php:91
|
9676 |
msgid "File|Folder Diagnostic & Troubleshooting Info"
|
9677 |
msgstr ""
|
9678 |
|
9679 |
+
#: admin/system-info/system-info.php:91
|
9680 |
msgid ""
|
9681 |
"The file/folder permissions and UID checks are mainly for diagnostic "
|
9682 |
"troubleshooting so that you can check permissions or the UID of mission "
|
9685 |
"but this is not an essential or critical thing to do these days."
|
9686 |
msgstr ""
|
9687 |
|
9688 |
+
#: admin/system-info/system-info.php:91
|
9689 |
msgid "Script Owner User ID (UID)|File Owner User ID"
|
9690 |
msgstr ""
|
9691 |
|
9692 |
+
#: admin/system-info/system-info.php:91
|
9693 |
msgid ""
|
9694 |
"Your Script Owner User ID (UID) and File Owner User ID should match. If they "
|
9695 |
"do not match for any folders then you will need to change the Owner of that "
|
9697 |
"Setup Steps Forum Help Link at the top of this Question Mark help window."
|
9698 |
msgstr ""
|
9699 |
|
9700 |
+
#: admin/system-info/system-info.php:91
|
9701 |
msgid "CGI And DSO File And Folder Permission Recommendations"
|
9702 |
msgstr ""
|
9703 |
|
9704 |
+
#: admin/system-info/system-info.php:91
|
9705 |
msgid ""
|
9706 |
"If your Server API (SAPI) is CGI you will see a table displayed with "
|
9707 |
"recommendations for file and folder permissions for CGI. If your SAPI is DSO/"
|
9709 |
"recommendations for DSO."
|
9710 |
msgstr ""
|
9711 |
|
9712 |
+
#: admin/system-info/system-info.php:91
|
9713 |
msgid ""
|
9714 |
"If your Host is using CGI, but they do not allow you to set your folder "
|
9715 |
"permissions more restrictive to 705 and file permissions more restrictive to "
|
9722 |
"things that they specifically allow or do not allow."
|
9723 |
msgstr ""
|
9724 |
|
9725 |
+
#: admin/system-info/system-info.php:91
|
9726 |
msgid ""
|
9727 |
"Most Hosts now use 705 Root folder permissions. Your Host might not be doing "
|
9728 |
"this or allow this, but typically 755 is fine for your Root folder. CGI 604 "
|
9730 |
"have been discovered with WP or with WP Plugins."
|
9731 |
msgstr ""
|
9732 |
|
9733 |
+
#: admin/system-info/system-info.php:91
|
9734 |
msgid "The /"
|
9735 |
msgstr ""
|
9736 |
|
9737 |
+
#: admin/system-info/system-info.php:91
|
9738 |
msgid ""
|
9739 |
"/bps-backup/ folder permission recommendation is 755 for CGI or DSO for "
|
9740 |
"compatibility reasons. The /bps-backup folder has a deny all htaccess file "
|
9742 |
"permissions for this folder are irrelevant."
|
9743 |
msgstr ""
|
9744 |
|
9745 |
+
#: admin/system-info/system-info.php:91
|
9746 |
msgid ""
|
9747 |
"Your current file and folder permissions are shown below with suggested/"
|
9748 |
"recommended file and folder permissions. "
|
9749 |
msgstr ""
|
9750 |
|
9751 |
+
#: admin/system-info/system-info.php:91
|
9752 |
msgid ""
|
9753 |
"Not all web hosts will allow you to set your folder permissions to these "
|
9754 |
"Recommended folder permissions."
|
9755 |
msgstr ""
|
9756 |
|
9757 |
+
#: admin/system-info/system-info.php:91
|
9758 |
msgid ""
|
9759 |
"If you see 500 errors after changing your folder permissions than change "
|
9760 |
"them back to what they were before."
|
9761 |
msgstr ""
|
9762 |
|
9763 |
+
#: admin/system-info/system-info.php:91
|
9764 |
msgid "BPS Pro Video Tutorial links can be found in the Help & FAQ pages."
|
9765 |
msgstr ""
|
9766 |
|
9767 |
+
#: admin/system-info/system-info.php:99
|
9768 |
msgid "Website|Server Info|Apache Modules|Directives"
|
9769 |
msgstr ""
|
9770 |
|
9771 |
+
#: admin/system-info/system-info.php:101
|
9772 |
msgid "Database Info|WordPress Site Info|Misc Checks"
|
9773 |
msgstr ""
|
9774 |
|
9775 |
+
#: admin/system-info/system-info.php:189 admin/system-info/system-info.php:192
|
9776 |
+
#: admin/system-info/system-info.php:197
|
9777 |
msgid "Server|Website IP Address: "
|
9778 |
msgstr ""
|
9779 |
|
9780 |
+
#: admin/system-info/system-info.php:210
|
9781 |
msgid "HTTP_CLIENT_IP IP Address: "
|
9782 |
msgstr ""
|
9783 |
|
9784 |
+
#: admin/system-info/system-info.php:213
|
9785 |
msgid "Proxy X-Forwarded-For IP Address: "
|
9786 |
msgstr ""
|
9787 |
|
9788 |
+
#: admin/system-info/system-info.php:216
|
9789 |
msgid "Public Internet IP Address (ISP): "
|
9790 |
msgstr ""
|
9791 |
|
9792 |
+
#: admin/system-info/system-info.php:255
|
9793 |
msgid "Must-Use Plugins"
|
9794 |
msgstr ""
|
9795 |
|
9796 |
+
#: admin/system-info/system-info.php:265
|
9797 |
msgid "Installed"
|
9798 |
msgstr ""
|
9799 |
|
9800 |
+
#: admin/system-info/system-info.php:274
|
9801 |
msgid "Themes"
|
9802 |
msgstr ""
|
9803 |
|
9804 |
+
#: admin/system-info/system-info.php:285
|
9805 |
msgid "Theme Folder Name"
|
9806 |
msgstr ""
|
9807 |
|
9808 |
+
#: admin/system-info/system-info.php:359
|
9809 |
msgid "Website Root URL"
|
9810 |
msgstr ""
|
9811 |
|
9812 |
+
#: admin/system-info/system-info.php:360
|
9813 |
msgid "Document Root Path"
|
9814 |
msgstr ""
|
9815 |
|
9816 |
+
#: admin/system-info/system-info.php:361
|
9817 |
msgid "WP ABSPATH"
|
9818 |
msgstr ""
|
9819 |
|
9820 |
+
#: admin/system-info/system-info.php:362
|
9821 |
msgid "get_home_path()"
|
9822 |
msgstr ""
|
9823 |
|
9824 |
+
#: admin/system-info/system-info.php:363
|
9825 |
msgid "Parent Directory"
|
9826 |
msgstr ""
|
9827 |
|
9828 |
+
#: admin/system-info/system-info.php:365
|
9829 |
msgid "Server Port"
|
9830 |
msgstr ""
|
9831 |
|
9832 |
+
#: admin/system-info/system-info.php:366
|
9833 |
msgid "Server Protocol"
|
9834 |
msgstr ""
|
9835 |
|
9836 |
+
#: admin/system-info/system-info.php:367
|
9837 |
msgid "Host by Address"
|
9838 |
msgstr ""
|
9839 |
|
9840 |
+
#: admin/system-info/system-info.php:368
|
9841 |
msgid "DNS Name Server"
|
9842 |
msgstr ""
|
9843 |
|
9844 |
+
#: admin/system-info/system-info.php:371
|
9845 |
msgid "DNS Name Server Not Available"
|
9846 |
msgstr ""
|
9847 |
|
9848 |
+
#: admin/system-info/system-info.php:384
|
9849 |
msgid "Server Type"
|
9850 |
msgstr ""
|
9851 |
|
9852 |
+
#: admin/system-info/system-info.php:385
|
9853 |
msgid "Operating System"
|
9854 |
msgstr ""
|
9855 |
|
9856 |
+
#: admin/system-info/system-info.php:386
|
9857 |
msgid "WP Filesystem API Method"
|
9858 |
msgstr ""
|
9859 |
|
9860 |
+
#: admin/system-info/system-info.php:388
|
9861 |
msgid "Script Owner ID"
|
9862 |
msgstr ""
|
9863 |
|
9864 |
+
#: admin/system-info/system-info.php:389
|
9865 |
msgid "File Owner ID"
|
9866 |
msgstr ""
|
9867 |
|
9868 |
+
#: admin/system-info/system-info.php:392
|
9869 |
msgid "Script Owner Name"
|
9870 |
msgstr ""
|
9871 |
|
9872 |
+
#: admin/system-info/system-info.php:394
|
9873 |
msgid "Server API"
|
9874 |
msgstr ""
|
9875 |
|
9876 |
+
#: admin/system-info/system-info.php:398
|
9877 |
msgid " CGI Host Server Type"
|
9878 |
msgstr ""
|
9879 |
|
9880 |
+
#: admin/system-info/system-info.php:400
|
9881 |
msgid " DSO Host Server Type"
|
9882 |
msgstr ""
|
9883 |
|
9884 |
+
#: admin/system-info/system-info.php:407
|
9885 |
msgid "cURL"
|
9886 |
msgstr ""
|
9887 |
|
9888 |
+
#: admin/system-info/system-info.php:409
|
9889 |
msgid "cURL Extension is Loaded Version: "
|
9890 |
msgstr ""
|
9891 |
|
9892 |
+
#: admin/system-info/system-info.php:412
|
9893 |
msgid "cURL OpenSSL Version (Used by PayPal, etc.)"
|
9894 |
msgstr ""
|
9895 |
|
9896 |
+
#: admin/system-info/system-info.php:415
|
9897 |
msgid "cURL Extension is Not Loaded"
|
9898 |
msgstr ""
|
9899 |
|
9900 |
+
#: admin/system-info/system-info.php:418
|
9901 |
msgid "OpenSSL Library"
|
9902 |
msgstr ""
|
9903 |
|
9904 |
+
#: admin/system-info/system-info.php:423
|
9905 |
msgid "Zend Engine Version"
|
9906 |
msgstr ""
|
9907 |
|
9908 |
+
#: admin/system-info/system-info.php:424
|
9909 |
msgid "Zend Guard|Optimizer"
|
9910 |
msgstr ""
|
9911 |
|
9912 |
+
#: admin/system-info/system-info.php:426
|
9913 |
msgid "Zend Optimizer+ Extension is Loaded and Enabled"
|
9914 |
msgstr ""
|
9915 |
|
9916 |
+
#: admin/system-info/system-info.php:429
|
9917 |
msgid "Zend Optimizer Extension is Loaded"
|
9918 |
msgstr ""
|
9919 |
|
9920 |
+
#: admin/system-info/system-info.php:432
|
9921 |
msgid "Zend Guard Loader Extension is Loaded"
|
9922 |
msgstr ""
|
9923 |
|
9924 |
+
#: admin/system-info/system-info.php:435
|
9925 |
msgid "A Zend Extension is Not Loaded"
|
9926 |
msgstr ""
|
9927 |
|
9928 |
+
#: admin/system-info/system-info.php:447 admin/system-info/system-info.php:454
|
9929 |
+
#: admin/system-info/system-info.php:466 admin/system-info/system-info.php:472
|
9930 |
msgid "OPcache"
|
9931 |
msgstr ""
|
9932 |
|
9933 |
+
#: admin/system-info/system-info.php:448
|
9934 |
msgid ""
|
9935 |
"opcache_get_status and/or opcache_get_configuration functions are disabled."
|
9936 |
msgstr ""
|
9937 |
|
9938 |
+
#: admin/system-info/system-info.php:459
|
9939 |
msgid "is Enabled"
|
9940 |
msgstr ""
|
9941 |
|
9942 |
+
#: admin/system-info/system-info.php:462 admin/system-info/system-info.php:467
|
9943 |
msgid "OPcache is Not Enabled"
|
9944 |
msgstr ""
|
9945 |
|
9946 |
+
#: admin/system-info/system-info.php:473
|
9947 |
msgid "opcache.restrict_api directive is in use."
|
9948 |
msgstr ""
|
9949 |
|
9950 |
+
#: admin/system-info/system-info.php:477
|
9951 |
msgid "ionCube Loader"
|
9952 |
msgstr ""
|
9953 |
|
9954 |
+
#: admin/system-info/system-info.php:479
|
9955 |
msgid "ionCube Loader Extension is Loaded "
|
9956 |
msgstr ""
|
9957 |
|
9958 |
+
#: admin/system-info/system-info.php:479 admin/system-info/system-info.php:726
|
9959 |
+
#: admin/system-info/system-info.php:738
|
9960 |
msgid "Version: "
|
9961 |
msgstr ""
|
9962 |
|
9963 |
+
#: admin/system-info/system-info.php:481
|
9964 |
msgid "ionCube Loader Extension is Not Loaded"
|
9965 |
msgstr ""
|
9966 |
|
9967 |
+
#: admin/system-info/system-info.php:484
|
9968 |
msgid "Suhosin"
|
9969 |
msgstr ""
|
9970 |
|
9971 |
+
#: admin/system-info/system-info.php:488
|
9972 |
msgid "The Suhosin-Patch is installed"
|
9973 |
msgstr ""
|
9974 |
|
9975 |
+
#: admin/system-info/system-info.php:491
|
9976 |
msgid "Suhosin-Extension is Loaded"
|
9977 |
msgstr ""
|
9978 |
|
9979 |
+
#: admin/system-info/system-info.php:493
|
9980 |
msgid "Suhosin is Not Installed|Loaded"
|
9981 |
msgstr ""
|
9982 |
|
9983 |
+
#: admin/system-info/system-info.php:496
|
9984 |
msgid "APC"
|
9985 |
msgstr ""
|
9986 |
|
9987 |
+
#: admin/system-info/system-info.php:498
|
9988 |
msgid "APC Extension is Loaded and Enabled"
|
9989 |
msgstr ""
|
9990 |
|
9991 |
+
#: admin/system-info/system-info.php:501
|
9992 |
msgid "APC Extension is Loaded but Not Enabled"
|
9993 |
msgstr ""
|
9994 |
|
9995 |
+
#: admin/system-info/system-info.php:503
|
9996 |
msgid "APC Extension is Not Loaded"
|
9997 |
msgstr ""
|
9998 |
|
9999 |
+
#: admin/system-info/system-info.php:506
|
10000 |
msgid "eAccelerator"
|
10001 |
msgstr ""
|
10002 |
|
10003 |
+
#: admin/system-info/system-info.php:508
|
10004 |
msgid "eAccelerator Extension is Loaded and Enabled"
|
10005 |
msgstr ""
|
10006 |
|
10007 |
+
#: admin/system-info/system-info.php:511
|
10008 |
msgid "eAccelerator Extension is Loaded but Not Enabled"
|
10009 |
msgstr ""
|
10010 |
|
10011 |
+
#: admin/system-info/system-info.php:513
|
10012 |
msgid "eAccelerator Extension is Not Loaded"
|
10013 |
msgstr ""
|
10014 |
|
10015 |
+
#: admin/system-info/system-info.php:516
|
10016 |
msgid "XCache"
|
10017 |
msgstr ""
|
10018 |
|
10019 |
+
#: admin/system-info/system-info.php:518
|
10020 |
msgid "XCache Extension is Loaded and Enabled"
|
10021 |
msgstr ""
|
10022 |
|
10023 |
+
#: admin/system-info/system-info.php:521
|
10024 |
msgid "XCache Extension is Loaded but Not Enabled"
|
10025 |
msgstr ""
|
10026 |
|
10027 |
+
#: admin/system-info/system-info.php:523
|
10028 |
msgid "XCache Extension is Not Loaded"
|
10029 |
msgstr ""
|
10030 |
|
10031 |
+
#: admin/system-info/system-info.php:526
|
10032 |
msgid "Varnish"
|
10033 |
msgstr ""
|
10034 |
|
10035 |
+
#: admin/system-info/system-info.php:528
|
10036 |
msgid "Varnish Extension is Loaded"
|
10037 |
msgstr ""
|
10038 |
|
10039 |
+
#: admin/system-info/system-info.php:530
|
10040 |
msgid "Varnish Extension is Not Loaded"
|
10041 |
msgstr ""
|
10042 |
|
10043 |
+
#: admin/system-info/system-info.php:533
|
10044 |
msgid "Memcache"
|
10045 |
msgstr ""
|
10046 |
|
10047 |
+
#: admin/system-info/system-info.php:535
|
10048 |
msgid "Memcache Extension is Loaded"
|
10049 |
msgstr ""
|
10050 |
|
10051 |
+
#: admin/system-info/system-info.php:537
|
10052 |
msgid "Memcache Extension is Not Loaded"
|
10053 |
msgstr ""
|
10054 |
|
10055 |
+
#: admin/system-info/system-info.php:540
|
10056 |
msgid "Memcached"
|
10057 |
msgstr ""
|
10058 |
|
10059 |
+
#: admin/system-info/system-info.php:542
|
10060 |
msgid "Memcached Extension is Loaded"
|
10061 |
msgstr ""
|
10062 |
|
10063 |
+
#: admin/system-info/system-info.php:544
|
10064 |
msgid "Memcached Extension is Not Loaded"
|
10065 |
msgstr ""
|
10066 |
|
10067 |
+
#: admin/system-info/system-info.php:557
|
10068 |
msgid "DB Info is not displayed on Network/Multisite subsites"
|
10069 |
msgstr ""
|
10070 |
|
10071 |
+
#: admin/system-info/system-info.php:578 includes/general-functions.php:283
|
10072 |
msgid "Not Set"
|
10073 |
msgstr ""
|
10074 |
|
10075 |
+
#: admin/system-info/system-info.php:622
|
10076 |
msgid "DB Version: "
|
10077 |
msgstr ""
|
10078 |
|
10079 |
+
#: admin/system-info/system-info.php:623
|
10080 |
msgid "DB Client Version: "
|
10081 |
msgstr ""
|
10082 |
|
10083 |
+
#: admin/system-info/system-info.php:624
|
10084 |
msgid "DB Hostname (Local): "
|
10085 |
msgstr ""
|
10086 |
|
10087 |
+
#: admin/system-info/system-info.php:625
|
10088 |
msgid "DB Hostname (Server): "
|
10089 |
msgstr ""
|
10090 |
|
10091 |
+
#: admin/system-info/system-info.php:626
|
10092 |
msgid "DB Hostname IP (Server): "
|
10093 |
msgstr ""
|
10094 |
|
10095 |
+
#: admin/system-info/system-info.php:627
|
10096 |
msgid "DB Storage Engine: "
|
10097 |
msgstr ""
|
10098 |
|
10099 |
+
#: admin/system-info/system-info.php:628
|
10100 |
msgid "DB Connect Timeout: "
|
10101 |
msgstr ""
|
10102 |
|
10103 |
+
#: admin/system-info/system-info.php:628
|
10104 |
msgid " seconds"
|
10105 |
msgstr ""
|
10106 |
|
10107 |
+
#: admin/system-info/system-info.php:629
|
10108 |
msgid "DB max_allowed_packet: "
|
10109 |
msgstr ""
|
10110 |
|
10111 |
+
#: admin/system-info/system-info.php:630
|
10112 |
msgid "DB Port: "
|
10113 |
msgstr ""
|
10114 |
|
10115 |
+
#: admin/system-info/system-info.php:631
|
10116 |
msgid "DB Name: "
|
10117 |
msgstr ""
|
10118 |
|
10119 |
+
#: admin/system-info/system-info.php:632
|
10120 |
msgid "DB Table Prefix: "
|
10121 |
msgstr ""
|
10122 |
|
10123 |
+
#: admin/system-info/system-info.php:633
|
10124 |
msgid "DB Charset: "
|
10125 |
msgstr ""
|
10126 |
|
10127 |
+
#: admin/system-info/system-info.php:634
|
10128 |
msgid "DB Collation: "
|
10129 |
msgstr ""
|
10130 |
|
10131 |
+
#: admin/system-info/system-info.php:635
|
10132 |
msgid "SQL Mode: "
|
10133 |
msgstr ""
|
10134 |
|
10135 |
+
#: admin/system-info/system-info.php:641 admin/system-info/system-info.php:644
|
10136 |
msgid "MySQL Extension: "
|
10137 |
msgstr ""
|
10138 |
|
10139 |
+
#: admin/system-info/system-info.php:641 admin/system-info/system-info.php:649
|
10140 |
msgid "Installed|Enabled"
|
10141 |
msgstr ""
|
10142 |
|
10143 |
+
#: admin/system-info/system-info.php:644 admin/system-info/system-info.php:652
|
10144 |
msgid "Not Installed|Enabled"
|
10145 |
msgstr ""
|
10146 |
|
10147 |
+
#: admin/system-info/system-info.php:649 admin/system-info/system-info.php:652
|
10148 |
msgid "MySQLi Extension: "
|
10149 |
msgstr ""
|
10150 |
|
10151 |
+
#: admin/system-info/system-info.php:659
|
10152 |
msgid "WordPress Installation Folder"
|
10153 |
msgstr ""
|
10154 |
|
10155 |
+
#: admin/system-info/system-info.php:662
|
10156 |
msgid "WordPress Installation Type"
|
10157 |
msgstr ""
|
10158 |
|
10159 |
+
#: admin/system-info/system-info.php:664
|
10160 |
msgid "Standard|GWIOD Site Type"
|
10161 |
msgstr ""
|
10162 |
|
10163 |
+
#: admin/system-info/system-info.php:666
|
10164 |
msgid "Network|Multisite"
|
10165 |
msgstr ""
|
10166 |
|
10167 |
+
#: admin/system-info/system-info.php:668
|
10168 |
msgid "BuddyPress"
|
10169 |
msgstr ""
|
10170 |
|
10171 |
+
#: admin/system-info/system-info.php:670
|
10172 |
msgid "bbPress"
|
10173 |
msgstr ""
|
10174 |
|
10175 |
+
#: admin/system-info/system-info.php:672
|
10176 |
msgid "Plugins Folder"
|
10177 |
msgstr ""
|
10178 |
|
10179 |
+
#: admin/system-info/system-info.php:676
|
10180 |
msgid "Uploads Folder"
|
10181 |
msgstr ""
|
10182 |
|
10183 |
+
#: admin/system-info/system-info.php:682
|
10184 |
msgid "UPLOADS Constant"
|
10185 |
msgstr ""
|
10186 |
|
10187 |
+
#: admin/system-info/system-info.php:686
|
10188 |
msgid "WP Permalink Structure"
|
10189 |
msgstr ""
|
10190 |
|
10191 |
+
#: admin/system-info/system-info.php:691 admin/system-info/system-info.php:693
|
10192 |
msgid "DISABLE_WP_CRON constant"
|
10193 |
msgstr ""
|
10194 |
|
10195 |
+
#: admin/system-info/system-info.php:691
|
10196 |
msgid "Standard WP Crons are disabled on your website."
|
10197 |
msgstr ""
|
10198 |
|
10199 |
+
#: admin/system-info/system-info.php:693
|
10200 |
msgid "Standard WP Crons are not disabled on your website."
|
10201 |
msgstr ""
|
10202 |
|
10203 |
+
#: admin/system-info/system-info.php:696
|
10204 |
msgid "Total Plugins Installed"
|
10205 |
msgstr ""
|
10206 |
|
10207 |
+
#: admin/system-info/system-info.php:698
|
10208 |
msgid "Total Must-Use Plugins Installed"
|
10209 |
msgstr ""
|
10210 |
|
10211 |
+
#: admin/system-info/system-info.php:700
|
10212 |
msgid "Total Plugins Activated"
|
10213 |
msgstr ""
|
10214 |
|
10215 |
+
#: admin/system-info/system-info.php:703
|
10216 |
msgid "Total Plugins Network Activated"
|
10217 |
msgstr ""
|
10218 |
|
10219 |
+
#: admin/system-info/system-info.php:709 admin/system-info/system-info.php:711
|
10220 |
msgid "Get Plugins|Themes List"
|
10221 |
msgstr ""
|
10222 |
|
10223 |
+
#: admin/system-info/system-info.php:713
|
10224 |
msgid "This window is draggable (top) and resizable (bottom right corner)"
|
10225 |
msgstr ""
|
10226 |
|
10227 |
+
#: admin/system-info/system-info.php:718
|
10228 |
msgid "Browser Compression Supported"
|
10229 |
msgstr ""
|
10230 |
|
10231 |
+
#: admin/system-info/system-info.php:721
|
10232 |
msgid "GD Library"
|
10233 |
msgstr ""
|
10234 |
|
10235 |
+
#: admin/system-info/system-info.php:726
|
10236 |
msgid "GD Extension is Loaded - "
|
10237 |
msgstr ""
|
10238 |
|
10239 |
+
#: admin/system-info/system-info.php:729
|
10240 |
msgid "GD Extension is Not Loaded"
|
10241 |
msgstr ""
|
10242 |
|
10243 |
+
#: admin/system-info/system-info.php:732
|
10244 |
msgid "ImageMagick"
|
10245 |
msgstr ""
|
10246 |
|
10247 |
+
#: admin/system-info/system-info.php:738
|
10248 |
msgid "ImageMagick Extension is Loaded - "
|
10249 |
msgstr ""
|
10250 |
|
10251 |
+
#: admin/system-info/system-info.php:741
|
10252 |
msgid "ImageMagick Extension is Not Loaded"
|
10253 |
msgstr ""
|
10254 |
|
10255 |
+
#: admin/system-info/system-info.php:756
|
10256 |
msgid "PHP Server|PHP.ini Info"
|
10257 |
msgstr ""
|
10258 |
|
10259 |
+
#: admin/system-info/system-info.php:758
|
10260 |
msgid ""
|
10261 |
"File|Folder Permissions (CGI or DSO)|Script Owner User ID (UID)|File Owner "
|
10262 |
"User ID"
|
10263 |
msgstr ""
|
10264 |
|
10265 |
+
#: admin/system-info/system-info.php:766
|
10266 |
msgid "PHP Version"
|
10267 |
msgstr ""
|
10268 |
|
10269 |
+
#: admin/system-info/system-info.php:767
|
10270 |
msgid "PHP Memory Usage"
|
10271 |
msgstr ""
|
10272 |
|
10273 |
+
#: admin/system-info/system-info.php:767
|
10274 |
msgid " MB"
|
10275 |
msgstr ""
|
10276 |
|
10277 |
+
#: admin/system-info/system-info.php:768
|
10278 |
msgid "WordPress Admin Memory Limit"
|
10279 |
msgstr ""
|
10280 |
|
10281 |
+
#: admin/system-info/system-info.php:771
|
10282 |
msgid "WordPress Base Memory Limit"
|
10283 |
msgstr ""
|
10284 |
|
10285 |
+
#: admin/system-info/system-info.php:783 admin/system-info/system-info.php:789
|
10286 |
+
#: admin/system-info/system-info.php:793 admin/system-info/system-info.php:797
|
10287 |
msgid "PHP Actual Configuration Memory Limit: "
|
10288 |
msgstr ""
|
10289 |
|
10290 |
+
#: admin/system-info/system-info.php:783
|
10291 |
msgid "The Memory Limit value is not available from your Server."
|
10292 |
msgstr ""
|
10293 |
|
10294 |
+
#: admin/system-info/system-info.php:794 admin/system-info/system-info.php:798
|
10295 |
msgid ""
|
10296 |
" Recommendation: Increase Memory Limit to at least 128M, 256M is even better."
|
10297 |
msgstr ""
|
10298 |
|
10299 |
+
#: admin/system-info/system-info.php:807 admin/system-info/system-info.php:809
|
10300 |
msgid "PHP Configuration File (php.ini)"
|
10301 |
msgstr ""
|
10302 |
|
10303 |
+
#: admin/system-info/system-info.php:809
|
10304 |
msgid "None/Not in use"
|
10305 |
msgstr ""
|
10306 |
|
10307 |
+
#: admin/system-info/system-info.php:822
|
10308 |
msgid "WP Temp Dir: "
|
10309 |
msgstr ""
|
10310 |
|
10311 |
+
#: admin/system-info/system-info.php:825
|
10312 |
msgid "The WP_TEMP_DIR constant is being used in wp-config.php file"
|
10313 |
msgstr ""
|
10314 |
|
10315 |
+
#: admin/system-info/system-info.php:831 admin/system-info/system-info.php:833
|
10316 |
msgid "PHP Temp Dir: "
|
10317 |
msgstr ""
|
10318 |
|
10319 |
+
#: admin/system-info/system-info.php:833 admin/system-info/system-info.php:844
|
10320 |
+
#: admin/system-info/system-info.php:852
|
10321 |
msgid "Not set/defined or directory is not writable"
|
10322 |
msgstr ""
|
10323 |
|
10324 |
+
#: admin/system-info/system-info.php:842 admin/system-info/system-info.php:844
|
10325 |
msgid "PHP Upload Temp Dir: "
|
10326 |
msgstr ""
|
10327 |
|
10328 |
+
#: admin/system-info/system-info.php:850 admin/system-info/system-info.php:852
|
10329 |
msgid "Session Save Path: "
|
10330 |
msgstr ""
|
10331 |
|
10332 |
+
#: admin/system-info/system-info.php:857
|
10333 |
msgid "Cycles: "
|
10334 |
msgstr ""
|
10335 |
|
10336 |
+
#: admin/system-info/system-info.php:861
|
10337 |
msgid "Garbage Collector: "
|
10338 |
msgstr ""
|
10339 |
|
10340 |
+
#: admin/system-info/system-info.php:864
|
10341 |
msgid "PHP Max Upload Size"
|
10342 |
msgstr ""
|
10343 |
|
10344 |
+
#: admin/system-info/system-info.php:867
|
10345 |
msgid "PHP Max Post Size"
|
10346 |
msgstr ""
|
10347 |
|
10348 |
+
#: admin/system-info/system-info.php:870
|
10349 |
msgid "PHP Safe Mode"
|
10350 |
msgstr ""
|
10351 |
|
10352 |
+
#: admin/system-info/system-info.php:879
|
10353 |
msgid "PHP Allow URL fopen"
|
10354 |
msgstr ""
|
10355 |
|
10356 |
+
#: admin/system-info/system-info.php:887
|
10357 |
msgid "PHP Allow URL Include"
|
10358 |
msgstr ""
|
10359 |
|
10360 |
+
#: admin/system-info/system-info.php:895
|
10361 |
msgid "PHP Display Errors"
|
10362 |
msgstr ""
|
10363 |
|
10364 |
+
#: admin/system-info/system-info.php:903
|
10365 |
msgid "PHP Display Startup Errors"
|
10366 |
msgstr ""
|
10367 |
|
10368 |
+
#: admin/system-info/system-info.php:911
|
10369 |
msgid "PHP Expose PHP"
|
10370 |
msgstr ""
|
10371 |
|
10372 |
+
#: admin/system-info/system-info.php:919
|
10373 |
msgid "PHP Register Globals"
|
10374 |
msgstr ""
|
10375 |
|
10376 |
+
#: admin/system-info/system-info.php:927
|
10377 |
msgid "PHP MySQL Allow Persistent Connections"
|
10378 |
msgstr ""
|
10379 |
|
10380 |
+
#: admin/system-info/system-info.php:935
|
10381 |
msgid "PHP Output Buffering"
|
10382 |
msgstr ""
|
10383 |
|
10384 |
+
#: admin/system-info/system-info.php:943
|
10385 |
msgid "PHP Max Script Execution Time"
|
10386 |
msgstr ""
|
10387 |
|
10388 |
+
#: admin/system-info/system-info.php:946
|
10389 |
msgid "PHP Magic Quotes GPC"
|
10390 |
msgstr ""
|
10391 |
|
10392 |
+
#: admin/system-info/system-info.php:954
|
10393 |
msgid "PHP open_basedir"
|
10394 |
msgstr ""
|
10395 |
|
10396 |
+
#: admin/system-info/system-info.php:959
|
10397 |
msgid "Off/Not in use"
|
10398 |
msgstr ""
|
10399 |
|
10400 |
+
#: admin/system-info/system-info.php:961
|
10401 |
msgid "PHP XML Support"
|
10402 |
msgstr ""
|
10403 |
|
10404 |
+
#: admin/system-info/system-info.php:963 admin/system-info/system-info.php:971
|
10405 |
+
#: admin/system-info/system-info.php:979
|
10406 |
msgid "Yes"
|
10407 |
msgstr ""
|
10408 |
|
10409 |
+
#: admin/system-info/system-info.php:966 admin/system-info/system-info.php:974
|
10410 |
+
#: admin/system-info/system-info.php:982
|
10411 |
msgid "No"
|
10412 |
msgstr ""
|
10413 |
|
10414 |
+
#: admin/system-info/system-info.php:969
|
10415 |
msgid "PHP IPTC Support"
|
10416 |
msgstr ""
|
10417 |
|
10418 |
+
#: admin/system-info/system-info.php:977
|
10419 |
msgid "PHP Exif Support"
|
10420 |
msgstr ""
|
10421 |
|
10422 |
+
#: admin/system-info/system-info.php:990
|
10423 |
msgid "PHP Disable Functions"
|
10424 |
msgstr ""
|
10425 |
|
10426 |
+
#: admin/system-info/system-info.php:994
|
10427 |
msgid "No PHP functions are disabled."
|
10428 |
msgstr ""
|
10429 |
|
10430 |
+
#: admin/system-info/system-info.php:999
|
10431 |
msgid "PHP Suhosin Function Blacklist"
|
10432 |
msgstr ""
|
10433 |
|
10434 |
+
#: admin/system-info/system-info.php:1003
|
10435 |
msgid "No PHP functions are blacklisted."
|
10436 |
msgstr ""
|
10437 |
|
10438 |
+
#: admin/system-info/system-info.php:1028
|
10439 |
msgid "CGI File and Folder Permissions|Recommendations"
|
10440 |
msgstr ""
|
10441 |
|
10442 |
+
#: admin/system-info/system-info.php:1031
|
10443 |
+
#: admin/system-info/system-info.php:1097
|
10444 |
msgid "Folder Path"
|
10445 |
msgstr ""
|
10446 |
|
10447 |
+
#: admin/system-info/system-info.php:1032
|
10448 |
+
#: admin/system-info/system-info.php:1098
|
10449 |
msgid "Recommended"
|
10450 |
msgstr ""
|
10451 |
|
10452 |
+
#: admin/system-info/system-info.php:1032
|
10453 |
+
#: admin/system-info/system-info.php:1033
|
10454 |
+
#: admin/system-info/system-info.php:1098
|
10455 |
+
#: admin/system-info/system-info.php:1099
|
10456 |
msgid "Permissions"
|
10457 |
msgstr ""
|
10458 |
|
10459 |
+
#: admin/system-info/system-info.php:1033
|
10460 |
+
#: admin/system-info/system-info.php:1099
|
10461 |
msgid "Current"
|
10462 |
msgstr ""
|
10463 |
|
10464 |
+
#: admin/system-info/system-info.php:1034
|
10465 |
+
#: admin/system-info/system-info.php:1100
|
10466 |
msgid "Script Owner"
|
10467 |
msgstr ""
|
10468 |
|
10469 |
+
#: admin/system-info/system-info.php:1034
|
10470 |
+
#: admin/system-info/system-info.php:1100
|
10471 |
msgid " User ID (UID)"
|
10472 |
msgstr ""
|
10473 |
|
10474 |
+
#: admin/system-info/system-info.php:1035
|
10475 |
+
#: admin/system-info/system-info.php:1101
|
10476 |
msgid "File Owner"
|
10477 |
msgstr ""
|
10478 |
|
10479 |
+
#: admin/system-info/system-info.php:1035
|
10480 |
+
#: admin/system-info/system-info.php:1101
|
10481 |
msgid " User ID"
|
10482 |
msgstr ""
|
10483 |
|
10484 |
+
#: admin/system-info/system-info.php:1094
|
10485 |
msgid "DSO File and Folder Permissions|Recommendations"
|
10486 |
msgstr ""
|
10487 |
|
10488 |
+
#: admin/system-info/system-info.php:1165
|
10489 |
msgid "System Info Processing Completion Time: "
|
10490 |
msgstr ""
|
10491 |
|
10492 |
+
#: admin/system-info/system-info.php:1201
|
10493 |
msgid ""
|
10494 |
"Check your website Headers or another website's Headers by making a GET "
|
10495 |
"Request"
|
10496 |
msgstr ""
|
10497 |
|
10498 |
+
#: admin/system-info/system-info.php:1217
|
10499 |
msgid "GET Request Headers: "
|
10500 |
msgstr ""
|
10501 |
|
10502 |
+
#: admin/system-info/system-info.php:1232
|
10503 |
msgid ""
|
10504 |
"Error: The WordPress wp_remote_get function is not available or is blocked "
|
10505 |
"on your website/server. Or you did not enter a valid URL."
|
10506 |
msgstr ""
|
10507 |
|
10508 |
+
#: admin/system-info/system-info.php:1245
|
10509 |
msgid "Enter a Website URL - Example: "
|
10510 |
msgstr ""
|
10511 |
|
10512 |
+
#: admin/system-info/system-info.php:1248
|
10513 |
msgid ""
|
10514 |
"This Headers check makes a GET Request using the WordPress wp_remote_get "
|
10515 |
"function."
|
10516 |
msgstr ""
|
10517 |
|
10518 |
+
#: admin/system-info/system-info.php:1248
|
10519 |
msgid ""
|
10520 |
"You can use the Check Headers HEAD Request tool to check headers using HEAD "
|
10521 |
"instead of GET."
|
10522 |
msgstr ""
|
10523 |
|
10524 |
+
#: admin/theme-skin/theme-skin.php:85
|
10525 |
msgid "Inpage Status Display"
|
10526 |
msgstr ""
|
10527 |
|
10528 |
+
#: admin/theme-skin/theme-skin.php:85
|
10529 |
msgid ""
|
10530 |
"The Inpage Status Display displays the status of BPS features, options and "
|
10531 |
"your site security in real-time. The Inpage Status Display automatically "
|
10536 |
"Display."
|
10537 |
msgstr ""
|
10538 |
|
10539 |
+
#: admin/theme-skin/theme-skin.php:85 admin/theme-skin/theme-skin.php:112
|
10540 |
msgid "Turn On|Off The Processing Spinner:"
|
10541 |
msgstr ""
|
10542 |
|
10543 |
+
#: admin/theme-skin/theme-skin.php:85
|
10544 |
msgid ""
|
10545 |
"The Processing Spinner is displayed during processing of the Forms listed "
|
10546 |
"below. The Processing Spinner includes a Cancel button to cancel the Form "
|
10551 |
"is being displayed."
|
10552 |
msgstr ""
|
10553 |
|
10554 |
+
#: admin/theme-skin/theme-skin.php:85
|
10555 |
msgid "Forms That Display The Processing Spinner:"
|
10556 |
msgstr ""
|
10557 |
|
10558 |
+
#: admin/theme-skin/theme-skin.php:85
|
10559 |
msgid ""
|
10560 |
"DB Backup Job Processing, DB Table Names & Character Length Table, DB Table "
|
10561 |
"Prefix Changer and Setup Wizard."
|
10562 |
msgstr ""
|
10563 |
|
10564 |
+
#: admin/theme-skin/theme-skin.php:85 admin/theme-skin/theme-skin.php:128
|
10565 |
msgid "Turn On|Off jQuery ScrollTop Animation:"
|
10566 |
msgstr ""
|
10567 |
|
10568 |
+
#: admin/theme-skin/theme-skin.php:85
|
10569 |
msgid ""
|
10570 |
"The jQuery ScrollTop Animation is the scrolling animation that you see after "
|
10571 |
"submitting BPS Forms, which automatically scrolls to the top of BPS plugin "
|
10576 |
"Animation can be turned On or Off."
|
10577 |
msgstr ""
|
10578 |
|
10579 |
+
#: admin/theme-skin/theme-skin.php:85 admin/theme-skin/theme-skin.php:144
|
10580 |
msgid "WP Toolbar Functionality In BPS Plugin Pages:"
|
10581 |
msgstr ""
|
10582 |
|
10583 |
+
#: admin/theme-skin/theme-skin.php:85
|
10584 |
msgid ""
|
10585 |
"This option affects the WP Toolbar in BPS plugin pages ONLY and does not "
|
10586 |
"affect the WP Toolbar anywhere else on your site. WP Toolbar additional menu "
|
10595 |
"to the default setting: Load Only The Default WP Toolbar."
|
10596 |
msgstr ""
|
10597 |
|
10598 |
+
#: admin/theme-skin/theme-skin.php:85 admin/theme-skin/theme-skin.php:191
|
10599 |
msgid "Script|Style Loader Filter (SLF) In BPS Plugin Pages:"
|
10600 |
msgstr ""
|
10601 |
|
10602 |
+
#: admin/theme-skin/theme-skin.php:85
|
10603 |
msgid ""
|
10604 |
"SLF is set to On by default. This option prevents other plugin and theme "
|
10605 |
"scripts from loading in BPS plugin pages, which can break BPS js and CSS "
|
10606 |
"scripts and cause BPS plugin pages to display visually broken."
|
10607 |
msgstr ""
|
10608 |
|
10609 |
+
#: admin/theme-skin/theme-skin.php:85 admin/theme-skin/theme-skin.php:209
|
10610 |
msgid "BPS UI|UX|AutoFix Debug:"
|
10611 |
msgstr ""
|
10612 |
|
10613 |
+
#: admin/theme-skin/theme-skin.php:85
|
10614 |
msgid ""
|
10615 |
"BPS UI|UX|AutoFix Debug is set to Off by default. Turning On the BPS UI|UX|"
|
10616 |
"AutoFix Debug option will display: plugin or theme Scripts that were "
|
10629 |
"the AutoFix whitelist rules will be created in."
|
10630 |
msgstr ""
|
10631 |
|
10632 |
+
#: admin/theme-skin/theme-skin.php:95
|
10633 |
msgid "Turn On|Off The Inpage Status Display:"
|
10634 |
msgstr ""
|
10635 |
|
10636 |
+
#: admin/theme-skin/theme-skin.php:97
|
10637 |
msgid "Inpage Status Display On"
|
10638 |
msgstr ""
|
10639 |
|
10640 |
+
#: admin/theme-skin/theme-skin.php:98
|
10641 |
msgid "Inpage Status Display Off"
|
10642 |
msgstr ""
|
10643 |
|
10644 |
+
#: admin/theme-skin/theme-skin.php:114
|
10645 |
msgid "Processing Spinner On"
|
10646 |
msgstr ""
|
10647 |
|
10648 |
+
#: admin/theme-skin/theme-skin.php:115
|
10649 |
msgid "Processing Spinner Off"
|
10650 |
msgstr ""
|
10651 |
|
10652 |
+
#: admin/theme-skin/theme-skin.php:130
|
10653 |
msgid "jQuery ScrollTop Animation On"
|
10654 |
msgstr ""
|
10655 |
|
10656 |
+
#: admin/theme-skin/theme-skin.php:131
|
10657 |
msgid "jQuery ScrollTop Animation Off"
|
10658 |
msgstr ""
|
10659 |
|
10660 |
+
#: admin/theme-skin/theme-skin.php:145 admin/theme-skin/theme-skin.php:192
|
10661 |
+
#: admin/theme-skin/theme-skin.php:210
|
10662 |
msgid "Click the Question Mark help button for information"
|
10663 |
msgstr ""
|
10664 |
|
10665 |
+
#: admin/theme-skin/theme-skin.php:147
|
10666 |
msgid "Load Only The Default WP Toolbar"
|
10667 |
msgstr ""
|
10668 |
|
10669 |
+
#: admin/theme-skin/theme-skin.php:148
|
10670 |
msgid "Load WP Toolbar With All Menu Items"
|
10671 |
msgstr ""
|
10672 |
|
10673 |
+
#: admin/theme-skin/theme-skin.php:175
|
10674 |
msgid "SLF Option settings saved"
|
10675 |
msgstr ""
|
10676 |
|
10677 |
+
#: admin/theme-skin/theme-skin.php:194
|
10678 |
msgid "SLF On"
|
10679 |
msgstr ""
|
10680 |
|
10681 |
+
#: admin/theme-skin/theme-skin.php:195
|
10682 |
msgid "SLF Off"
|
10683 |
msgstr ""
|
10684 |
|
10685 |
+
#: admin/theme-skin/theme-skin.php:212
|
10686 |
msgid "Debug Off"
|
10687 |
msgstr ""
|
10688 |
|
10689 |
+
#: admin/theme-skin/theme-skin.php:213
|
10690 |
msgid "Debug On"
|
10691 |
msgstr ""
|
10692 |
|
10693 |
+
#: admin/wizard/pwizard-autofix-setup.php:51
|
10694 |
msgid "WP Super Cache (WPSC) Plugin AutoSetup not required: "
|
10695 |
msgstr ""
|
10696 |
|
10697 |
+
#: admin/wizard/pwizard-autofix-setup.php:51
|
10698 |
msgid ""
|
10699 |
"GWIOD site types do not require AutoSetup because WPSC creates htaccess code "
|
10700 |
"in the site root htaccess file."
|
10701 |
msgstr ""
|
10702 |
|
10703 |
+
#: admin/wizard/pwizard-autofix-setup.php:196
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10704 |
msgid "WP Super Cache (WPSC) Plugin AutoSetup Successful: "
|
10705 |
msgstr ""
|
10706 |
|
10707 |
+
#: admin/wizard/pwizard-autofix-setup.php:196
|
10708 |
msgid ""
|
10709 |
"Important Note: If you change any of your WP Super Cache settings at any "
|
10710 |
"time, re-run the Setup Wizards again."
|
10711 |
msgstr ""
|
10712 |
|
10713 |
+
#: admin/wizard/pwizard-autofix-setup.php:298
|
10714 |
msgid "WP Super Cache (WPSC) Plugin AutoCleanup Successful: "
|
10715 |
msgstr ""
|
10716 |
|
10717 |
+
#: admin/wizard/pwizard-autofix-setup.php:298
|
10718 |
msgid ""
|
10719 |
"AutoCleanup has removed all WPSC htaccess code from BPS Custom Code and your "
|
10720 |
"Root htaccess file if it existed. If you have WPSC installed and are still "
|
10722 |
"activated the WPSC plugin again and resaved your WPSC plugin settings again."
|
10723 |
msgstr ""
|
10724 |
|
10725 |
+
#: admin/wizard/pwizard-autofix-setup.php:345
|
10726 |
msgid "W3 Total Cache (W3TC) Plugin AutoSetup not required: "
|
10727 |
msgstr ""
|
10728 |
|
10729 |
+
#: admin/wizard/pwizard-autofix-setup.php:345
|
10730 |
msgid ""
|
10731 |
"GWIOD site types do not require AutoSetup because W3TC creates htaccess code "
|
10732 |
"in the site root htaccess file."
|
10733 |
msgstr ""
|
10734 |
|
10735 |
+
#: admin/wizard/pwizard-autofix-setup.php:405
|
10736 |
msgid ""
|
10737 |
"Error: The Pre-Installation Wizard is unable to add the W3 Total Cache "
|
10738 |
"WP_CACHE code in your wp-config.php file."
|
10739 |
msgstr ""
|
10740 |
|
10741 |
+
#: admin/wizard/pwizard-autofix-setup.php:405
|
10742 |
msgid ""
|
10743 |
"A wp-config.php file was NOT found in your WordPress website root folder. If "
|
10744 |
"you have moved your wp-config.php file to another folder location then you "
|
10749 |
"file: "
|
10750 |
msgstr ""
|
10751 |
|
10752 |
+
#: admin/wizard/pwizard-autofix-setup.php:405
|
10753 |
+
#: admin/wizard/pwizard-autofix-setup.php:758
|
10754 |
+
#: admin/wizard/pwizard-autofix-setup.php:1643
|
10755 |
+
#: admin/wizard/pwizard-autofix-setup.php:1935
|
10756 |
+
msgid "Manually Edit the WordPress wp-config.php file"
|
10757 |
+
msgstr ""
|
10758 |
+
|
10759 |
+
#: admin/wizard/pwizard-autofix-setup.php:524
|
10760 |
msgid "W3 Total Cache (W3TC) Plugin AutoSetup Successful: "
|
10761 |
msgstr ""
|
10762 |
|
10763 |
+
#: admin/wizard/pwizard-autofix-setup.php:524
|
10764 |
msgid ""
|
10765 |
"Important Note: If you change any of your W3 Total Cache settings at any "
|
10766 |
"time, re-run the Setup Wizards again."
|
10767 |
msgstr ""
|
10768 |
|
10769 |
+
#: admin/wizard/pwizard-autofix-setup.php:684
|
10770 |
msgid "W3 Total Cache (W3TC) Plugin AutoCleanup Successful: "
|
10771 |
msgstr ""
|
10772 |
|
10773 |
+
#: admin/wizard/pwizard-autofix-setup.php:684
|
10774 |
msgid ""
|
10775 |
"AutoCleanup has removed all W3TC htaccess code from BPS Custom Code and your "
|
10776 |
"Root htaccess file if it existed. If you have W3TC installed and are still "
|
10778 |
"activated the W3TC plugin again and resaved your W3TC plugin settings again."
|
10779 |
msgstr ""
|
10780 |
|
10781 |
+
#: admin/wizard/pwizard-autofix-setup.php:733
|
10782 |
msgid "Comet Cache Plugin AutoSetup not required: "
|
10783 |
msgstr ""
|
10784 |
|
10785 |
+
#: admin/wizard/pwizard-autofix-setup.php:733
|
10786 |
msgid ""
|
10787 |
"GWIOD site types do not require AutoSetup because Comet Cache creates "
|
10788 |
"htaccess code in the site root htaccess file."
|
10789 |
msgstr ""
|
10790 |
|
10791 |
+
#: admin/wizard/pwizard-autofix-setup.php:758
|
10792 |
msgid ""
|
10793 |
"Error: The Pre-Installation Wizard is unable to add the Comet Cache WP_CACHE "
|
10794 |
"code in your wp-config.php file."
|
10795 |
msgstr ""
|
10796 |
|
10797 |
+
#: admin/wizard/pwizard-autofix-setup.php:758
|
10798 |
msgid ""
|
10799 |
"A wp-config.php file was NOT found in your WordPress website root folder. If "
|
10800 |
"you have moved your wp-config.php file to another folder location then you "
|
10804 |
"Click this link for the steps to manually edit your wp-config.php file: "
|
10805 |
msgstr ""
|
10806 |
|
10807 |
+
#: admin/wizard/pwizard-autofix-setup.php:935
|
10808 |
msgid "Comet Cache Plugin AutoSetup Successful: "
|
10809 |
msgstr ""
|
10810 |
|
10811 |
+
#: admin/wizard/pwizard-autofix-setup.php:935
|
10812 |
msgid ""
|
10813 |
"Important Note: If you change any of your Comet Cache settings at any time, "
|
10814 |
"re-run the Setup Wizards again."
|
10815 |
msgstr ""
|
10816 |
|
10817 |
+
#: admin/wizard/pwizard-autofix-setup.php:1029
|
10818 |
msgid "Comet Cache Plugin AutoCleanup Successful: "
|
10819 |
msgstr ""
|
10820 |
|
10821 |
+
#: admin/wizard/pwizard-autofix-setup.php:1029
|
10822 |
msgid ""
|
10823 |
"AutoCleanup has removed all Comet Cache htaccess code from BPS Custom Code "
|
10824 |
"and your Root htaccess file if it existed. If you have Comet Cache installed "
|
10827 |
"Cache plugin settings again."
|
10828 |
msgstr ""
|
10829 |
|
10830 |
+
#: admin/wizard/pwizard-autofix-setup.php:1077
|
10831 |
msgid "Endurance Page Cache (EPC) Plugin AutoSetup not required: "
|
10832 |
msgstr ""
|
10833 |
|
10834 |
+
#: admin/wizard/pwizard-autofix-setup.php:1077
|
10835 |
msgid ""
|
10836 |
"GWIOD site types do not require AutoSetup because EPC creates htaccess code "
|
10837 |
"in the site root htaccess file."
|
10838 |
msgstr ""
|
10839 |
|
10840 |
+
#: admin/wizard/pwizard-autofix-setup.php:1127
|
10841 |
msgid "Error: Endurance Page Cache (EPC) Plugin AutoSetup Unsuccessful - "
|
10842 |
msgstr ""
|
10843 |
|
10844 |
+
#: admin/wizard/pwizard-autofix-setup.php:1127
|
10845 |
msgid ""
|
10846 |
"The Setup Wizard did not find any Endurance Page Cache htaccess code in your "
|
10847 |
"Root htaccess file. Do these steps to fix the problem: Go to the BPS "
|
10851 |
"Pre-Installation Wizard and Setup Wizard again."
|
10852 |
msgstr ""
|
10853 |
|
10854 |
+
#: admin/wizard/pwizard-autofix-setup.php:1181
|
10855 |
msgid "Endurance Page Cache (EPC) Plugin AutoSetup Successful: "
|
10856 |
msgstr ""
|
10857 |
|
10858 |
+
#: admin/wizard/pwizard-autofix-setup.php:1181
|
10859 |
msgid ""
|
10860 |
"Important Note: If you disable or enable the Endurance Page Cache plugin at "
|
10861 |
"any time, re-run the Setup Wizards again."
|
10862 |
msgstr ""
|
10863 |
|
10864 |
+
#: admin/wizard/pwizard-autofix-setup.php:1289
|
10865 |
msgid "Endurance Page Cache (EPC) Plugin AutoCleanup Successful: "
|
10866 |
msgstr ""
|
10867 |
|
10868 |
+
#: admin/wizard/pwizard-autofix-setup.php:1289
|
10869 |
msgid ""
|
10870 |
"AutoCleanup has removed all Endurance Page Cache htaccess code from BPS "
|
10871 |
"Custom Code and your Root htaccess file if it existed. If you have disabled "
|
10874 |
"Endurance Page Cache plugin again."
|
10875 |
msgstr ""
|
10876 |
|
10877 |
+
#: admin/wizard/pwizard-autofix-setup.php:1339
|
10878 |
msgid "WP Fastest Cache (WPFC) Plugin AutoSetup not required: "
|
10879 |
msgstr ""
|
10880 |
|
10881 |
+
#: admin/wizard/pwizard-autofix-setup.php:1339
|
10882 |
msgid ""
|
10883 |
"GWIOD site types do not require AutoSetup because WPFC creates htaccess code "
|
10884 |
"in the site root htaccess file."
|
10885 |
msgstr ""
|
10886 |
|
10887 |
+
#: admin/wizard/pwizard-autofix-setup.php:1405
|
10888 |
msgid "Error: WP Fastest Cache (WPFC) Plugin AutoSetup Unsuccessful: "
|
10889 |
msgstr ""
|
10890 |
|
10891 |
+
#: admin/wizard/pwizard-autofix-setup.php:1405
|
10892 |
msgid ""
|
10893 |
"The Setup Wizard did not find any WPFC htaccess code in your Root htaccess "
|
10894 |
"file. Do these steps to fix the problem: Go to the BPS htaccess File Editor "
|
10897 |
"Pre-Installation Wizard and Setup Wizard again."
|
10898 |
msgstr ""
|
10899 |
|
10900 |
+
#: admin/wizard/pwizard-autofix-setup.php:1462
|
10901 |
msgid "WP Fastest Cache (WPFC) Plugin AutoSetup Successful: "
|
10902 |
msgstr ""
|
10903 |
|
10904 |
+
#: admin/wizard/pwizard-autofix-setup.php:1462
|
10905 |
msgid ""
|
10906 |
"Important Note: If you change any of your WP Fastest Cache settings at any "
|
10907 |
"time, re-run the Setup Wizards again."
|
10908 |
msgstr ""
|
10909 |
|
10910 |
+
#: admin/wizard/pwizard-autofix-setup.php:1566
|
10911 |
msgid "WP Fastest Cache (WPFC) Plugin AutoCleanup Successful: "
|
10912 |
msgstr ""
|
10913 |
|
10914 |
+
#: admin/wizard/pwizard-autofix-setup.php:1566
|
10915 |
msgid ""
|
10916 |
"AutoCleanup has removed all WPFC htaccess code from BPS Custom Code and your "
|
10917 |
"Root htaccess file if it existed. If you have WPFC installed and are still "
|
10919 |
"activated the WPFC plugin again and resaved your WPFC plugin settings again."
|
10920 |
msgstr ""
|
10921 |
|
10922 |
+
#: admin/wizard/pwizard-autofix-setup.php:1618
|
10923 |
msgid "WP Rocket Plugin AutoSetup not required: "
|
10924 |
msgstr ""
|
10925 |
|
10926 |
+
#: admin/wizard/pwizard-autofix-setup.php:1618
|
10927 |
msgid ""
|
10928 |
"GWIOD site types do not require AutoSetup because WP Rocket creates htaccess "
|
10929 |
"code in the site root htaccess file."
|
10930 |
msgstr ""
|
10931 |
|
10932 |
+
#: admin/wizard/pwizard-autofix-setup.php:1643
|
10933 |
msgid ""
|
10934 |
"Error: The Pre-Installation Wizard is unable to add the WP Rocket WP_CACHE "
|
10935 |
"code in your wp-config.php file."
|
10936 |
msgstr ""
|
10937 |
|
10938 |
+
#: admin/wizard/pwizard-autofix-setup.php:1643
|
10939 |
msgid ""
|
10940 |
"A wp-config.php file was NOT found in your WordPress website root folder. If "
|
10941 |
"you have moved your wp-config.php file to another folder location then you "
|
10945 |
"Click this link for the steps to manually edit your wp-config.php file: "
|
10946 |
msgstr ""
|
10947 |
|
10948 |
+
#: admin/wizard/pwizard-autofix-setup.php:1746
|
10949 |
msgid "WP Rocket Plugin AutoSetup Successful: "
|
10950 |
msgstr ""
|
10951 |
|
10952 |
+
#: admin/wizard/pwizard-autofix-setup.php:1746
|
10953 |
msgid ""
|
10954 |
"Important Note: If you change any of your WP Rocket settings at any time, re-"
|
10955 |
"run the Setup Wizards again."
|
10956 |
msgstr ""
|
10957 |
|
10958 |
+
#: admin/wizard/pwizard-autofix-setup.php:1861
|
10959 |
msgid "WP Rocket Plugin AutoCleanup Successful: "
|
10960 |
msgstr ""
|
10961 |
|
10962 |
+
#: admin/wizard/pwizard-autofix-setup.php:1861
|
10963 |
msgid ""
|
10964 |
"AutoCleanup has removed all WP Rocket htaccess code from BPS Custom Code and "
|
10965 |
"your Root htaccess file if it existed. If you have WP Rocket installed and "
|
10968 |
"plugin settings again."
|
10969 |
msgstr ""
|
10970 |
|
10971 |
+
#: admin/wizard/pwizard-autofix-setup.php:1910
|
10972 |
msgid "LiteSpeed Cache Plugin AutoSetup not required: "
|
10973 |
msgstr ""
|
10974 |
|
10975 |
+
#: admin/wizard/pwizard-autofix-setup.php:1910
|
10976 |
msgid ""
|
10977 |
"GWIOD site types do not require AutoSetup because LiteSpeed Cache creates "
|
10978 |
"htaccess code in the site root htaccess file."
|
10979 |
msgstr ""
|
10980 |
|
10981 |
+
#: admin/wizard/pwizard-autofix-setup.php:1935
|
10982 |
msgid ""
|
10983 |
"Error: The Pre-Installation Wizard is unable to add the LiteSpeed Cache "
|
10984 |
"WP_CACHE code in your wp-config.php file."
|
10985 |
msgstr ""
|
10986 |
|
10987 |
+
#: admin/wizard/pwizard-autofix-setup.php:1935
|
10988 |
msgid ""
|
10989 |
"A wp-config.php file was NOT found in your WordPress website root folder. If "
|
10990 |
"you have moved your wp-config.php file to another folder location then you "
|
10995 |
"file: "
|
10996 |
msgstr ""
|
10997 |
|
10998 |
+
#: admin/wizard/pwizard-autofix-setup.php:2038
|
10999 |
msgid "LiteSpeed Cache Plugin AutoSetup Successful: "
|
11000 |
msgstr ""
|
11001 |
|
11002 |
+
#: admin/wizard/pwizard-autofix-setup.php:2038
|
11003 |
msgid ""
|
11004 |
"Important Note: If you change any of your LiteSpeed Cache settings at any "
|
11005 |
"time, re-run the Setup Wizards again."
|
11006 |
msgstr ""
|
11007 |
|
11008 |
+
#: admin/wizard/pwizard-autofix-setup.php:2132
|
11009 |
msgid "LiteSpeed Cache Plugin AutoCleanup Successful: "
|
11010 |
msgstr ""
|
11011 |
|
11012 |
+
#: admin/wizard/pwizard-autofix-setup.php:2132
|
11013 |
msgid ""
|
11014 |
"AutoCleanup has removed all LiteSpeed Cache htaccess code from BPS Custom "
|
11015 |
"Code and your Root htaccess file if it existed. If you have LiteSpeed Cache "
|
11574 |
msgstr ""
|
11575 |
|
11576 |
#: admin/wizard/wizard-functions.php:647 admin/wizard/wizard-functions.php:656
|
11577 |
+
#: admin/wizard/wizard-functions.php:879 admin/wizard/wizard.php:611
|
11578 |
+
#: admin/wizard/wizard.php:649 admin/wizard/wizard.php:707
|
11579 |
+
#: admin/wizard/wizard.php:755 admin/wizard/wizard.php:807
|
11580 |
+
#: admin/wizard/wizard.php:915 includes/general-functions.php:1143
|
11581 |
msgid " DB Option created or updated Successfully!"
|
11582 |
msgstr ""
|
11583 |
|
11625 |
msgid "Error: The default.htaccess Master htaccess file cannot be created."
|
11626 |
msgstr ""
|
11627 |
|
11628 |
+
#: admin/wizard/wizard-functions.php:880 admin/wizard/wizard.php:422
|
11629 |
msgid " Folder created Successfully!"
|
11630 |
msgstr ""
|
11631 |
|
11838 |
"Video Tutorials to watch."
|
11839 |
msgstr ""
|
11840 |
|
11841 |
+
#: admin/wizard/wizard.php:367 admin/wizard/wizard.php:1184
|
11842 |
msgid "AutoFix (AutoWhitelist|AutoSetup|AutoCleanup)"
|
11843 |
msgstr ""
|
11844 |
|
11845 |
+
#: admin/wizard/wizard.php:390
|
11846 |
msgid "BulletProof Security Database Tables Setup"
|
11847 |
msgstr ""
|
11848 |
|
11849 |
+
#: admin/wizard/wizard.php:419
|
11850 |
msgid "BulletProof Security Core Folders Setup"
|
11851 |
msgstr ""
|
11852 |
|
11853 |
+
#: admin/wizard/wizard.php:423
|
11854 |
msgid "Error: Unable to create Folder "
|
11855 |
msgstr ""
|
11856 |
|
11857 |
+
#: admin/wizard/wizard.php:451
|
11858 |
msgid "BulletProof Security Core Files Setup"
|
11859 |
msgstr ""
|
11860 |
|
11861 |
+
#: admin/wizard/wizard.php:454
|
11862 |
msgid " File created or updated Successfully!"
|
11863 |
msgstr ""
|
11864 |
|
11865 |
+
#: admin/wizard/wizard.php:455
|
11866 |
msgid "Error: Unable to create or update File "
|
11867 |
msgstr ""
|
11868 |
|
11869 |
+
#: admin/wizard/wizard.php:606
|
11870 |
msgid "BulletProof Security MScan Malware Scanner Setup"
|
11871 |
msgstr ""
|
11872 |
|
11873 |
+
#: admin/wizard/wizard.php:627
|
11874 |
msgid "BulletProof Security DB Backup Setup"
|
11875 |
msgstr ""
|
11876 |
|
11877 |
+
#: admin/wizard/wizard.php:646
|
11878 |
msgid "BulletProof Security Hidden Plugin Folders|Files (HPF) Setup"
|
11879 |
msgstr ""
|
11880 |
|
11881 |
+
#: admin/wizard/wizard.php:679
|
11882 |
msgid ""
|
11883 |
"Hidden Plugin Folders|Files (HPF) DB Options created or updated Successfully!"
|
11884 |
msgstr ""
|
11885 |
|
11886 |
+
#: admin/wizard/wizard.php:682
|
11887 |
msgid "BulletProof Security Security Log User Agent Filter Setup"
|
11888 |
msgstr ""
|
11889 |
|
11890 |
+
#: admin/wizard/wizard.php:703
|
11891 |
msgid "BulletProof Security Email Alerting & Log File Options Setup"
|
11892 |
msgstr ""
|
11893 |
|
11894 |
+
#: admin/wizard/wizard.php:752
|
11895 |
msgid "BulletProof Security Login Security & Monitoring Options Setup"
|
11896 |
msgstr ""
|
11897 |
|
11898 |
+
#: admin/wizard/wizard.php:802
|
11899 |
msgid "BulletProof Security JTC-Lite Options Setup"
|
11900 |
msgstr ""
|
11901 |
|
11902 |
+
#: admin/wizard/wizard.php:912
|
11903 |
msgid "BulletProof Security Force Strong Passwords Options Setup"
|
11904 |
msgstr ""
|
11905 |
|
11906 |
+
#: admin/wizard/wizard.php:966
|
11907 |
msgid "The Setup Wizard has completed BPS Setup."
|
11908 |
msgstr ""
|
11909 |
|
11910 |
+
#: admin/wizard/wizard.php:966
|
11911 |
msgid ""
|
11912 |
"Check the \"BPS Setup Verification & Error Checks\" section below for any "
|
11913 |
"errors in Red Font."
|
11914 |
msgstr ""
|
11915 |
|
11916 |
+
#: admin/wizard/wizard.php:966
|
11917 |
msgid ""
|
11918 |
"Your existing root htaccess file has been backed up here: /wp-content/bps-"
|
11919 |
"backup/master-backups/root.htaccess-[Date-Timestamp]. If you run into a "
|
11921 |
"forum topic: "
|
11922 |
msgstr ""
|
11923 |
|
11924 |
+
#: admin/wizard/wizard.php:966
|
11925 |
msgid "Setup Wizard Root htaccess File Backup"
|
11926 |
msgstr ""
|
11927 |
|
11928 |
+
#: admin/wizard/wizard.php:986
|
11929 |
msgid "Setup Wizard Completion Time: "
|
11930 |
msgstr ""
|
11931 |
|
11932 |
+
#: admin/wizard/wizard.php:1058 admin/wizard/wizard.php:1759
|
11933 |
+
#: admin/wizard/wizard.php:1762
|
11934 |
msgid "Setup Wizard Export|Import"
|
11935 |
msgstr ""
|
11936 |
|
11937 |
+
#: admin/wizard/wizard.php:1069
|
11938 |
msgid "htaccess Files Disabled Notice: "
|
11939 |
msgstr ""
|
11940 |
|
11941 |
+
#: admin/wizard/wizard.php:1069
|
11942 |
msgid ""
|
11943 |
"BPS has detected that htaccess files cannot be used on your website/server. "
|
11944 |
"Click this "
|
11945 |
msgstr ""
|
11946 |
|
11947 |
+
#: admin/wizard/wizard.php:1069
|
11948 |
msgid " link for more information before running the Wizards."
|
11949 |
msgstr ""
|
11950 |
|
11951 |
+
#: admin/wizard/wizard.php:1069
|
11952 |
msgid ""
|
11953 |
"If you intentionally disabled htaccess files then disregard this Notice. The "
|
11954 |
"Setup Wizard needs to be run again after disabling or enabling htaccess "
|
11955 |
"files."
|
11956 |
msgstr ""
|
11957 |
|
11958 |
+
#: admin/wizard/wizard.php:1103
|
11959 |
msgid "Recommended Video Tutorials: "
|
11960 |
msgstr ""
|
11961 |
|
11962 |
+
#: admin/wizard/wizard.php:1107
|
11963 |
msgid "Setup Wizard Video Tutorial"
|
11964 |
msgstr ""
|
11965 |
|
11966 |
+
#: admin/wizard/wizard.php:1109
|
11967 |
msgid "Security Log Video Tutorial"
|
11968 |
msgstr ""
|
11969 |
|
11970 |
+
#: admin/wizard/wizard.php:1112
|
11971 |
msgid "Setup Wizard Steps: "
|
11972 |
msgstr ""
|
11973 |
|
11974 |
+
#: admin/wizard/wizard.php:1112
|
11975 |
msgid "1. Click the Setup Wizard button."
|
11976 |
msgstr ""
|
11977 |
|
11978 |
+
#: admin/wizard/wizard.php:1116
|
11979 |
msgid ""
|
11980 |
"Setup Wizard Pre-Installation Checks are automatically performed and "
|
11981 |
"displayed on the Setup Wizard page. Green font messages mean everything is "
|
11986 |
"to be fixed before running the Setup Wizard."
|
11987 |
msgstr ""
|
11988 |
|
11989 |
+
#: admin/wizard/wizard.php:1116
|
11990 |
msgid ""
|
11991 |
"You can re-run the Setup Wizard again at any time. Your existing settings "
|
11992 |
"will NOT be overwritten and will be re-saved. Any new or additional settings "
|
11993 |
"that the Setup Wizard finds on your website will be saved/setup."
|
11994 |
msgstr ""
|
11995 |
|
11996 |
+
#: admin/wizard/wizard.php:1116
|
11997 |
msgid ""
|
11998 |
"When the Setup Wizard has completed you will see \"The Setup Wizard has "
|
11999 |
"completed BPS Setup.\""
|
12000 |
msgstr ""
|
12001 |
|
12002 |
+
#: admin/wizard/wizard.php:1116
|
12003 |
msgid ""
|
12004 |
"Your existing Root and wp-admin htaccess files are backed up before new Root "
|
12005 |
"and wp-admin htaccess files are created by the Setup Wizard. The BPS backup "
|
12006 |
"folder is here: "
|
12007 |
msgstr ""
|
12008 |
|
12009 |
+
#: admin/wizard/wizard.php:1119
|
12010 |
msgid ""
|
12011 |
" and the backed up htaccess file names are: root.htaccess and wpadmin."
|
12012 |
"htaccess."
|
12013 |
msgstr ""
|
12014 |
|
12015 |
+
#: admin/wizard/wizard.php:1174
|
12016 |
msgid "Forum Help Links:"
|
12017 |
msgstr ""
|
12018 |
|
12019 |
+
#: admin/wizard/wizard.php:1178
|
12020 |
msgid "Go Daddy Managed WordPress Hosting (GDMW)"
|
12021 |
msgstr ""
|
12022 |
|
12023 |
+
#: admin/wizard/wizard.php:1179 admin/wizard/wizard.php:1184
|
12024 |
msgid "Enable|Disable htaccess Files"
|
12025 |
msgstr ""
|
12026 |
|
12027 |
+
#: admin/wizard/wizard.php:1180
|
12028 |
msgid "AutoFix Forum Topic"
|
12029 |
msgstr ""
|
12030 |
|
12031 |
+
#: admin/wizard/wizard.php:1181
|
12032 |
msgid "GDPR Compliance Forum Topic"
|
12033 |
msgstr ""
|
12034 |
|
12035 |
+
#: admin/wizard/wizard.php:1184
|
12036 |
msgid ""
|
12037 |
"Setup Wizard AutoFix is turned On by default. When AutoFix is turned On the "
|
12038 |
"Setup Wizard will automatically create htaccess whitelist rules in BPS "
|
12054 |
"problem is."
|
12055 |
msgstr ""
|
12056 |
|
12057 |
+
#: admin/wizard/wizard.php:1184
|
12058 |
msgid "GDPR Compliance (IP Address Logging On|Off)"
|
12059 |
msgstr ""
|
12060 |
|
12061 |
+
#: admin/wizard/wizard.php:1184
|
12062 |
msgid ""
|
12063 |
"The GDPR Compliance option setting is set to Off by default. Choosing the "
|
12064 |
"GDPR Compliance On option setting will disable IP address logging in all BPS "
|
12072 |
"at the top of this Question Mark help window."
|
12073 |
msgstr ""
|
12074 |
|
12075 |
+
#: admin/wizard/wizard.php:1184 admin/wizard/wizard.php:1226
|
12076 |
msgid "Go Daddy Managed WordPress Hosting (GDMW):"
|
12077 |
msgstr ""
|
12078 |
|
12079 |
+
#: admin/wizard/wizard.php:1184
|
12080 |
msgid ""
|
12081 |
"This option is ONLY for a special type of Go Daddy Hosting account called "
|
12082 |
"\"Managed WordPress Hosting\" and is NOT for regular/standard Go Daddy "
|
12085 |
"section above for more information."
|
12086 |
msgstr ""
|
12087 |
|
12088 |
+
#: admin/wizard/wizard.php:1184 admin/wizard/wizard.php:1240
|
12089 |
msgid "Enable|Disable htaccess Files:"
|
12090 |
msgstr ""
|
12091 |
|
12092 |
+
#: admin/wizard/wizard.php:1184
|
12093 |
msgid "Before changing this option setting, click the "
|
12094 |
msgstr ""
|
12095 |
|
12096 |
+
#: admin/wizard/wizard.php:1184
|
12097 |
msgid ""
|
12098 |
" Forum Help Link at the top of this Question Mark help window to find out "
|
12099 |
"exactly what this option setting does and when it should or should not be "
|
12102 |
"files."
|
12103 |
msgstr ""
|
12104 |
|
12105 |
+
#: admin/wizard/wizard.php:1184
|
12106 |
msgid "Enable|Disable wp-admin BulletProof Mode"
|
12107 |
msgstr ""
|
12108 |
|
12109 |
+
#: admin/wizard/wizard.php:1184
|
12110 |
msgid ""
|
12111 |
"The default setting is already set to: wp-admin BulletProof Mode Enabled. If "
|
12112 |
"you would like to disable wp-admin BulletProof Mode select wp-admin "
|
12113 |
"BulletProof Mode Disabled."
|
12114 |
msgstr ""
|
12115 |
|
12116 |
+
#: admin/wizard/wizard.php:1184 admin/wizard/wizard.php:1269
|
12117 |
msgid "Zip File Download Fix (Incapsula, Proxy, Other Cause):"
|
12118 |
msgstr ""
|
12119 |
|
12120 |
+
#: admin/wizard/wizard.php:1184
|
12121 |
msgid ""
|
12122 |
"This option should only be set to On if you are seeing a 403 error and/or "
|
12123 |
"unable to download these Zip files: Custom Code Export Zip file, Login "
|
12133 |
"again."
|
12134 |
msgstr ""
|
12135 |
|
12136 |
+
#: admin/wizard/wizard.php:1184 admin/wizard/wizard.php:1283
|
12137 |
msgid "Multisite Hide|Display System Info Page for Subsites:"
|
12138 |
msgstr ""
|
12139 |
|
12140 |
+
#: admin/wizard/wizard.php:1184
|
12141 |
msgid ""
|
12142 |
"This option is for Network|Multisite sites only. Choosing Hide System Info "
|
12143 |
"Page will hide the System Info menu link under the BPS navigational menus. "
|
12145 |
"under the BPS navigational mensus."
|
12146 |
msgstr ""
|
12147 |
|
12148 |
+
#: admin/wizard/wizard.php:1184 admin/wizard/wizard.php:1294
|
12149 |
msgid "Network|Multisite Sitewide Login Security Settings"
|
12150 |
msgstr ""
|
12151 |
|
12152 |
+
#: admin/wizard/wizard.php:1184
|
12153 |
msgid ""
|
12154 |
"This option is for Network|Multisite sites only. This is an independent "
|
12155 |
"option Form that creates and saves Login Security DB option settings for all "
|
12166 |
"Reset, Sort DB Rows: Ascending - Show Oldest Login First."
|
12167 |
msgstr ""
|
12168 |
|
12169 |
+
#: admin/wizard/wizard.php:1184
|
12170 |
msgid "Network|Multisite Sitewide JTC-Lite Settings"
|
12171 |
msgstr ""
|
12172 |
|
12173 |
+
#: admin/wizard/wizard.php:1184
|
12174 |
msgid ""
|
12175 |
"This option is for Network|Multisite sites only. This is an independent "
|
12176 |
"option Form that creates and saves JTC-Lite DB option settings for all "
|
12185 |
"box on the Login Form."
|
12186 |
msgstr ""
|
12187 |
|
12188 |
+
#: admin/wizard/wizard.php:1184 admin/wizard/wizard.php:1312
|
12189 |
msgid "Network|Multisite Sitewide Force Strong Passwords Settings"
|
12190 |
msgstr ""
|
12191 |
|
12192 |
+
#: admin/wizard/wizard.php:1184
|
12193 |
msgid ""
|
12194 |
"This option is for Network|Multisite sites ONLY. This is an independent "
|
12195 |
"option Form that creates and saves FSP DB option settings for all Network "
|
12202 |
"all checked and Displayed Message/Error Message: default FSP message."
|
12203 |
msgstr ""
|
12204 |
|
12205 |
+
#: admin/wizard/wizard.php:1184 admin/wizard/wizard.php:1321
|
12206 |
msgid "Network|Multisite Sitewide GDMW Settings"
|
12207 |
msgstr ""
|
12208 |
|
12209 |
+
#: admin/wizard/wizard.php:1184
|
12210 |
msgid ""
|
12211 |
"This option is for Network|Multisite sites ONLY. This is an independent "
|
12212 |
"option Form that creates and saves the GDMW option setting for all Network "
|
12220 |
"all Subsites."
|
12221 |
msgstr ""
|
12222 |
|
12223 |
+
#: admin/wizard/wizard.php:1198
|
12224 |
msgid "AutoFix (AutoWhitelist|AutoSetup|AutoCleanup):"
|
12225 |
msgstr ""
|
12226 |
|
12227 |
+
#: admin/wizard/wizard.php:1200
|
12228 |
msgid "AutoFix On"
|
12229 |
msgstr ""
|
12230 |
|
12231 |
+
#: admin/wizard/wizard.php:1201
|
12232 |
msgid "AutoFix Off"
|
12233 |
msgstr ""
|
12234 |
|
12235 |
+
#: admin/wizard/wizard.php:1212
|
12236 |
msgid "GDPR Compliance (IP Address Logging On|Off):"
|
12237 |
msgstr ""
|
12238 |
|
12239 |
+
#: admin/wizard/wizard.php:1214
|
12240 |
msgid "GDPR Compliance Off"
|
12241 |
msgstr ""
|
12242 |
|
12243 |
+
#: admin/wizard/wizard.php:1215
|
12244 |
msgid "GDPR Compliance On"
|
12245 |
msgstr ""
|
12246 |
|
12247 |
+
#: admin/wizard/wizard.php:1228
|
12248 |
msgid "No (default setting)"
|
12249 |
msgstr ""
|
12250 |
|
12251 |
+
#: admin/wizard/wizard.php:1229
|
12252 |
msgid "Yes (ONLY if you have Managed WordPress Hosting)"
|
12253 |
msgstr ""
|
12254 |
|
12255 |
+
#: admin/wizard/wizard.php:1241
|
12256 |
msgid ""
|
12257 |
"CAUTION: Click the Question Mark help button before changing this option "
|
12258 |
"setting"
|
12259 |
msgstr ""
|
12260 |
|
12261 |
+
#: admin/wizard/wizard.php:1243
|
12262 |
msgid "htaccess Files Enabled"
|
12263 |
msgstr ""
|
12264 |
|
12265 |
+
#: admin/wizard/wizard.php:1244
|
12266 |
msgid "htaccess Files Disabled"
|
12267 |
msgstr ""
|
12268 |
|
12269 |
+
#: admin/wizard/wizard.php:1255
|
12270 |
msgid "Enable|Disable wp-admin BulletProof Mode:"
|
12271 |
msgstr ""
|
12272 |
|
12273 |
+
#: admin/wizard/wizard.php:1257
|
12274 |
msgid "wp-admin BulletProof Mode Enabled"
|
12275 |
msgstr ""
|
12276 |
|
12277 |
+
#: admin/wizard/wizard.php:1258
|
12278 |
msgid "wp-admin BulletProof Mode Disabled"
|
12279 |
msgstr ""
|
12280 |
|
12281 |
+
#: admin/wizard/wizard.php:1271
|
12282 |
msgid "Zip File Download Fix Off"
|
12283 |
msgstr ""
|
12284 |
|
12285 |
+
#: admin/wizard/wizard.php:1272
|
12286 |
msgid "Zip File Download Fix On"
|
12287 |
msgstr ""
|
12288 |
|
12289 |
+
#: admin/wizard/wizard.php:1285
|
12290 |
msgid "Hide System Info Page"
|
12291 |
msgstr ""
|
12292 |
|
12293 |
+
#: admin/wizard/wizard.php:1286
|
12294 |
msgid "Display System Info Page"
|
12295 |
msgstr ""
|
12296 |
|
12297 |
+
#: admin/wizard/wizard.php:1303
|
12298 |
msgid "Network|Multisite Sitewide JTC Anti-Spam|Anti-Hacker Settings"
|
12299 |
msgstr ""
|
12300 |
|
12301 |
+
#: admin/wizard/wizard.php:1353
|
12302 |
msgid ""
|
12303 |
"The Zip File Download Fix option is set to On. This option should only be "
|
12304 |
"set to On if you are unable to download these Zip files: Custom Code Export "
|
12306 |
"htaccess file backup Zip file."
|
12307 |
msgstr ""
|
12308 |
|
12309 |
+
#: admin/wizard/wizard.php:1366
|
12310 |
msgid "The Zip File Download Fix option is set to Off."
|
12311 |
msgstr ""
|
12312 |
|
12313 |
+
#: admin/wizard/wizard.php:1390
|
12314 |
msgid "Multisite Hide|Display System Info Page for Subsites option saved."
|
12315 |
msgstr ""
|
12316 |
|
12317 |
+
#: admin/wizard/wizard.php:1405
|
12318 |
msgid ""
|
12319 |
"Error: Your Network site exceeds the default WP criteria for a large network "
|
12320 |
"site. Either you have more than 10,000 users or more than 10,000 sites. "
|
12322 |
"org for assistance."
|
12323 |
msgstr ""
|
12324 |
|
12325 |
+
#: admin/wizard/wizard.php:1412
|
12326 |
msgid " LSM DB Options created or updated Successfully!"
|
12327 |
msgstr ""
|
12328 |
|
12329 |
+
#: admin/wizard/wizard.php:1485 admin/wizard/wizard.php:1618
|
12330 |
+
#: admin/wizard/wizard.php:1692
|
12331 |
msgid ""
|
12332 |
"Error: Your Network site exceeds the default WP criteria for a large network "
|
12333 |
"site. Either you have more than 10,000 users or more than 10,000 sites. "
|
12335 |
"line: Setup Wizard Options Large Network Site Help."
|
12336 |
msgstr ""
|
12337 |
|
12338 |
+
#: admin/wizard/wizard.php:1492
|
12339 |
msgid " JTC DB Options created or updated Successfully!"
|
12340 |
msgstr ""
|
12341 |
|
12342 |
+
#: admin/wizard/wizard.php:1625
|
12343 |
msgid " FSP DB Options created or updated Successfully!"
|
12344 |
msgstr ""
|
12345 |
|
12346 |
+
#: admin/wizard/wizard.php:1699
|
12347 |
msgid " GDMW DB Options created or updated Successfully!"
|
12348 |
msgstr ""
|
12349 |
|
12350 |
+
#: admin/wizard/wizard.php:1777
|
12351 |
msgid "GDMW Hosting"
|
12352 |
msgstr ""
|
12353 |
|
12354 |
+
#: admin/wizard/wizard.php:1779
|
12355 |
msgid "Setup Wizard Export"
|
12356 |
msgstr ""
|
12357 |
|
12358 |
+
#: admin/wizard/wizard.php:1779
|
12359 |
msgid ""
|
12360 |
"The Setup Wizard Export feature exports all BPS plugin option settings "
|
12361 |
"except for website specific settings that need to be setup by running the "
|
12363 |
"new website. The name of the exported zip file is: bps-settings-export.zip"
|
12364 |
msgstr ""
|
12365 |
|
12366 |
+
#: admin/wizard/wizard.php:1779
|
12367 |
msgid "Setup Wizard Import"
|
12368 |
msgstr ""
|
12369 |
|
12370 |
+
#: admin/wizard/wizard.php:1779
|
12371 |
msgid ""
|
12372 |
"To import BPS plugin option settings click the Choose File button, navigate "
|
12373 |
"to where you downloaded/saved the bps-settings-export.zip file on your "
|
12381 |
"code or remove it from BPS Custom Code."
|
12382 |
msgstr ""
|
12383 |
|
12384 |
+
#: admin/wizard/wizard.php:1779
|
12385 |
msgid "Network|Multisite Help Info"
|
12386 |
msgstr ""
|
12387 |
|
12388 |
+
#: admin/wizard/wizard.php:1779
|
12389 |
msgid ""
|
12390 |
"Setup Wizard Export|Import works for Network|Multisite site types, but only "
|
12391 |
"the Primary site's BPS plugin option settings are exported and imported. BPS "
|
12397 |
"option settings from the Primary site to all Subsites."
|
12398 |
msgstr ""
|
12399 |
|
12400 |
+
#: admin/wizard/wizard.php:1786
|
12401 |
msgid ""
|
12402 |
"Clicking OK will Import BPS plugin settings from the bps-settings-export.zip "
|
12403 |
"file on your computer."
|
12404 |
msgstr ""
|
12405 |
|
12406 |
+
#: admin/wizard/wizard.php:1786
|
12407 |
msgid "Click OK to Import BPS plugin settings or click Cancel."
|
12408 |
msgstr ""
|
12409 |
|
12410 |
+
#: admin/wizard/wizard.php:1795
|
12411 |
msgid ""
|
12412 |
"Clicking OK will Export your BPS plugin settings into the bps-settings-"
|
12413 |
"export.zip file, which you can then download to your computer by clicking "
|
12415 |
"message."
|
12416 |
msgstr ""
|
12417 |
|
12418 |
+
#: admin/wizard/wizard.php:1795
|
12419 |
msgid "Click OK to Export BPS plugin settings or click Cancel."
|
12420 |
msgstr ""
|
12421 |
|
12422 |
+
#: admin/wizard/wizard.php:1926
|
12423 |
msgid ""
|
12424 |
"BPS plugin option settings exported successfully. Click the Download Zip "
|
12425 |
"Export button to download the Setup Wizard Export zip file: bps-settings-"
|
12426 |
"export.zip."
|
12427 |
msgstr ""
|
12428 |
|
12429 |
+
#: admin/wizard/wizard.php:1926
|
12430 |
msgid ""
|
12431 |
" and select the Zip File Download Fix On setting for the Zile File Download "
|
12432 |
"Fix option. You should now be able to download the bps-settings-export.zip "
|
12433 |
"file."
|
12434 |
msgstr ""
|
12435 |
|
12436 |
+
#: admin/wizard/wizard.php:2106 admin/wizard/wizard.php:2133
|
12437 |
msgid "BPS plugin settings imported successfully."
|
12438 |
msgstr ""
|
12439 |
|
12440 |
+
#: admin/wizard/wizard.php:2106 admin/wizard/wizard.php:2133
|
12441 |
msgid "IMPORTANT: Run the BPS Setup Wizard now."
|
12442 |
msgstr ""
|
12443 |
|
12444 |
+
#: admin/wizard/wizard.php:2106 admin/wizard/wizard.php:2133
|
12445 |
msgid ""
|
12446 |
"After running the Setup Wizard go to the BPS Security > htaccess File "
|
12447 |
"Options > Custom Code tab page and check all of your custom htaccess code "
|
12451 |
"code or remove it from BPS Custom Code."
|
12452 |
msgstr ""
|
12453 |
|
12454 |
+
#: admin/wizard/wizard.php:2147
|
12455 |
msgid ""
|
12456 |
"Either the bps-settings-export.zip file has not been selected yet for Import "
|
12457 |
"or the file "
|
12458 |
msgstr ""
|
12459 |
|
12460 |
+
#: admin/wizard/wizard.php:2147
|
12461 |
msgid ""
|
12462 |
" is not a valid Setup Wizard Export file or file name. The BPS Setup Wizard "
|
12463 |
"Import feature only allows the bps-settings-export.zip file to be Uploaded/"
|
12521 |
msgstr ""
|
12522 |
|
12523 |
#: includes/functions.php:361 includes/functions.php:577
|
12524 |
+
#: includes/functions.php:649 includes/hud-autofix-setup.php:76
|
12525 |
#: includes/hud-dismiss-functions.php:509
|
12526 |
msgid "Go to the "
|
12527 |
msgstr ""
|
12567 |
"button before running the Setup Wizard again."
|
12568 |
msgstr ""
|
12569 |
|
12570 |
+
#: includes/functions.php:399 includes/hud-autofix-setup.php:76
|
12571 |
#: includes/hud-dismiss-functions.php:77 includes/hud-dismiss-functions.php:111
|
12572 |
#: includes/hud-dismiss-functions.php:145
|
12573 |
#: includes/hud-dismiss-functions.php:358
|
12580 |
#: includes/hud-dismiss-functions.php:712
|
12581 |
#: includes/hud-dismiss-functions.php:764
|
12582 |
#: includes/hud-dismiss-functions.php:811
|
12583 |
+
#: includes/hud-dismiss-functions.php:912
|
12584 |
+
#: includes/hud-dismiss-functions.php:1006
|
12585 |
msgid ""
|
12586 |
"To Dismiss this Notice click the Dismiss Notice button below. To Reset "
|
12587 |
"Dismiss Notices click the Reset|Recheck Dismiss Notices button on the Alerts|"
|
12588 |
"Logs|Email Options page."
|
12589 |
msgstr ""
|
12590 |
|
12591 |
+
#: includes/functions.php:399 includes/hud-autofix-setup.php:76
|
12592 |
#: includes/hud-dismiss-functions.php:77 includes/hud-dismiss-functions.php:111
|
12593 |
#: includes/hud-dismiss-functions.php:145
|
12594 |
#: includes/hud-dismiss-functions.php:210
|
12611 |
#: includes/hud-dismiss-functions.php:712
|
12612 |
#: includes/hud-dismiss-functions.php:764
|
12613 |
#: includes/hud-dismiss-functions.php:811
|
12614 |
+
#: includes/hud-dismiss-functions.php:912
|
12615 |
+
#: includes/hud-dismiss-functions.php:1006
|
12616 |
msgid "Dismiss Notice"
|
12617 |
msgstr ""
|
12618 |
|
13227 |
msgid "Plugin Folder Path: "
|
13228 |
msgstr ""
|
13229 |
|
13230 |
+
#: includes/hud-autofix-setup.php:76
|
13231 |
msgid "BPS Notice: The Endurance Page Cache (EPC) must-use plugin is installed"
|
13232 |
msgstr ""
|
13233 |
|
13234 |
+
#: includes/hud-autofix-setup.php:76
|
13235 |
msgid ""
|
13236 |
"The EPC must-use plugin has been automatically installed by your Web Host "
|
13237 |
"and requires these additional BPS setup steps to make sure everything is "
|
13238 |
"setup correctly:"
|
13239 |
msgstr ""
|
13240 |
|
13241 |
+
#: includes/hud-autofix-setup.php:76 includes/hud-autofix-setup.php:138
|
13242 |
+
#: includes/hud-autofix-setup.php:215 includes/hud-autofix-setup.php:289
|
13243 |
+
#: includes/hud-autofix-setup.php:297 includes/hud-autofix-setup.php:375
|
13244 |
+
#: includes/hud-autofix-setup.php:382 includes/hud-autofix-setup.php:451
|
13245 |
+
#: includes/hud-autofix-setup.php:458 includes/hud-autofix-setup.php:527
|
13246 |
+
#: includes/hud-autofix-setup.php:534
|
13247 |
msgid "BPS htaccess File Editor page"
|
13248 |
msgstr ""
|
13249 |
|
13250 |
+
#: includes/hud-autofix-setup.php:76
|
13251 |
msgid ""
|
13252 |
" click the Unlock htaccess File button, go to the WordPress Settings > "
|
13253 |
"General page, scroll down to Endurance Cache settings,"
|
13254 |
msgstr ""
|
13255 |
|
13256 |
+
#: includes/hud-autofix-setup.php:76
|
13257 |
msgid "click the Save Changes button, click this link: "
|
13258 |
msgstr ""
|
13259 |
|
13260 |
+
#: includes/hud-autofix-setup.php:76 includes/hud-autofix-setup.php:131
|
13261 |
+
#: includes/hud-autofix-setup.php:138 includes/hud-autofix-setup.php:163
|
13262 |
+
#: includes/hud-autofix-setup.php:208 includes/hud-autofix-setup.php:215
|
13263 |
+
#: includes/hud-autofix-setup.php:240 includes/hud-autofix-setup.php:289
|
13264 |
+
#: includes/hud-autofix-setup.php:297 includes/hud-autofix-setup.php:322
|
13265 |
+
#: includes/hud-autofix-setup.php:375 includes/hud-autofix-setup.php:382
|
13266 |
+
#: includes/hud-autofix-setup.php:407 includes/hud-autofix-setup.php:451
|
13267 |
+
#: includes/hud-autofix-setup.php:458 includes/hud-autofix-setup.php:483
|
13268 |
+
#: includes/hud-autofix-setup.php:527 includes/hud-autofix-setup.php:534
|
13269 |
+
#: includes/hud-autofix-setup.php:560
|
13270 |
msgid "BPS Setup Wizard"
|
13271 |
msgstr ""
|
13272 |
|
13273 |
+
#: includes/hud-autofix-setup.php:76
|
13274 |
msgid " and click the Setup Wizard button."
|
13275 |
msgstr ""
|
13276 |
|
13277 |
+
#: includes/hud-autofix-setup.php:131
|
13278 |
msgid ""
|
13279 |
"W3 Total Cache (W3TC) htaccess code was not found in your Root htaccess file"
|
13280 |
msgstr ""
|
13281 |
|
13282 |
+
#: includes/hud-autofix-setup.php:131 includes/hud-autofix-setup.php:208
|
13283 |
+
#: includes/hud-autofix-setup.php:289 includes/hud-autofix-setup.php:375
|
13284 |
+
#: includes/hud-autofix-setup.php:451 includes/hud-autofix-setup.php:527
|
13285 |
msgid ""
|
13286 |
"If you have deactivated Root Folder BulletProof Mode temporarily then "
|
13287 |
"disregard this message. When you activate Root Folder BulletProof Mode again "
|
13288 |
"this message will go away automatically."
|
13289 |
msgstr ""
|
13290 |
|
13291 |
+
#: includes/hud-autofix-setup.php:131
|
13292 |
msgid ""
|
13293 |
"If you just installed W3 Total Cache then go to the W3TC plugin settings "
|
13294 |
"page, choose and save the W3TC plugin settings that you want to use and then "
|
13295 |
"run the "
|
13296 |
msgstr ""
|
13297 |
|
13298 |
+
#: includes/hud-autofix-setup.php:131
|
13299 |
msgid " to automatically setup/combine W3TC and BPS htaccess code together."
|
13300 |
msgstr ""
|
13301 |
|
13302 |
+
#: includes/hud-autofix-setup.php:138
|
13303 |
msgid ""
|
13304 |
"W3 Total Cache (W3TC) Plugin htaccess code was not found in BPS Custom Code"
|
13305 |
msgstr ""
|
13306 |
|
13307 |
+
#: includes/hud-autofix-setup.php:138
|
13308 |
msgid "If you just installed W3 Total Cache then go to the "
|
13309 |
msgstr ""
|
13310 |
|
13311 |
+
#: includes/hud-autofix-setup.php:138
|
13312 |
msgid ""
|
13313 |
" click the Unlock htaccess File button, then go to the W3 Total Cache plugin "
|
13314 |
"settings page, choose and save the W3 Total Cache plugin settings that you "
|
13315 |
"want to use and then run the "
|
13316 |
msgstr ""
|
13317 |
|
13318 |
+
#: includes/hud-autofix-setup.php:138
|
13319 |
msgid ""
|
13320 |
" to automatically setup/combine W3 Total Cache and BPS htaccess code "
|
13321 |
"together."
|
13322 |
msgstr ""
|
13323 |
|
13324 |
+
#: includes/hud-autofix-setup.php:138
|
13325 |
msgid ""
|
13326 |
"Note: If you change your W3 Total Cache Plugin settings at a later time then "
|
13327 |
"repeat these steps."
|
13328 |
msgstr ""
|
13329 |
|
13330 |
+
#: includes/hud-autofix-setup.php:163
|
13331 |
msgid ""
|
13332 |
"W3 Total Cache (W3TC) is deactivated and W3TC htaccess code was found in "
|
13333 |
"your Root htaccess file"
|
13334 |
msgstr ""
|
13335 |
|
13336 |
+
#: includes/hud-autofix-setup.php:163
|
13337 |
msgid "If you have deactivated W3TC temporarily then disregard this message."
|
13338 |
msgstr ""
|
13339 |
|
13340 |
+
#: includes/hud-autofix-setup.php:163
|
13341 |
msgid "If you are planning on permanently uninstalling W3TC then run the "
|
13342 |
msgstr ""
|
13343 |
|
13344 |
+
#: includes/hud-autofix-setup.php:163
|
13345 |
msgid " after you have uninstalled/deleted the W3TC plugin."
|
13346 |
msgstr ""
|
13347 |
|
13348 |
+
#: includes/hud-autofix-setup.php:208
|
13349 |
msgid ""
|
13350 |
"WP Super Cache (WPSC) htaccess code was not found in your Root htaccess file"
|
13351 |
msgstr ""
|
13352 |
|
13353 |
+
#: includes/hud-autofix-setup.php:208
|
13354 |
msgid ""
|
13355 |
"If you just installed WP Super Cache then go to the WPSC plugin settings "
|
13356 |
"page, choose and save the WPSC plugin settings that you want to use and then "
|
13357 |
"run the "
|
13358 |
msgstr ""
|
13359 |
|
13360 |
+
#: includes/hud-autofix-setup.php:208
|
13361 |
msgid " to automatically setup/combine WPSC and BPS htaccess code together."
|
13362 |
msgstr ""
|
13363 |
|
13364 |
+
#: includes/hud-autofix-setup.php:215
|
13365 |
msgid ""
|
13366 |
"WP Super Cache (WPSC) Plugin htaccess code was not found in BPS Custom Code"
|
13367 |
msgstr ""
|
13368 |
|
13369 |
+
#: includes/hud-autofix-setup.php:215
|
13370 |
msgid "If you just installed WP Super Cache then go to the "
|
13371 |
msgstr ""
|
13372 |
|
13373 |
+
#: includes/hud-autofix-setup.php:215
|
13374 |
msgid ""
|
13375 |
" click the Unlock htaccess File button, then go to the WP Super Cache plugin "
|
13376 |
"settings page, choose and save the WP Super Cache plugin settings that you "
|
13377 |
"want to use and then run the "
|
13378 |
msgstr ""
|
13379 |
|
13380 |
+
#: includes/hud-autofix-setup.php:215
|
13381 |
msgid ""
|
13382 |
" to automatically setup/combine WP Super Cache and BPS htaccess code "
|
13383 |
"together."
|
13384 |
msgstr ""
|
13385 |
|
13386 |
+
#: includes/hud-autofix-setup.php:215
|
13387 |
msgid ""
|
13388 |
"Note: If you change your WP Super Cache Plugin settings at a later time then "
|
13389 |
"repeat these steps."
|
13390 |
msgstr ""
|
13391 |
|
13392 |
+
#: includes/hud-autofix-setup.php:240
|
13393 |
msgid ""
|
13394 |
"WP Super Cache (WPSC) is deactivated and WPSC htaccess code was found in "
|
13395 |
"your Root htaccess file"
|
13396 |
msgstr ""
|
13397 |
|
13398 |
+
#: includes/hud-autofix-setup.php:240
|
13399 |
msgid "If you have deactivated WPSC temporarily then disregard this message."
|
13400 |
msgstr ""
|
13401 |
|
13402 |
+
#: includes/hud-autofix-setup.php:240
|
13403 |
msgid "If you are planning on permanently uninstalling WPSC then run the "
|
13404 |
msgstr ""
|
13405 |
|
13406 |
+
#: includes/hud-autofix-setup.php:240
|
13407 |
msgid " after you have uninstalled/deleted the WPSC plugin."
|
13408 |
msgstr ""
|
13409 |
|
13410 |
+
#: includes/hud-autofix-setup.php:289
|
13411 |
msgid "Comet Cache htaccess code was not found in your Root htaccess file"
|
13412 |
msgstr ""
|
13413 |
|
13414 |
+
#: includes/hud-autofix-setup.php:289 includes/hud-autofix-setup.php:297
|
13415 |
msgid "If you just installed Comet Cache then go to the "
|
13416 |
msgstr ""
|
13417 |
|
13418 |
+
#: includes/hud-autofix-setup.php:289
|
13419 |
msgid ""
|
13420 |
" click the Unlock htaccess File button, go to the Comet Cache plugin "
|
13421 |
"settings page, choose and save the Comet Cache plugin settings that you want "
|
13422 |
"to use and then run the "
|
13423 |
msgstr ""
|
13424 |
|
13425 |
+
#: includes/hud-autofix-setup.php:289 includes/hud-autofix-setup.php:297
|
13426 |
msgid ""
|
13427 |
" to automatically setup/combine Comet Cache and BPS htaccess code together."
|
13428 |
msgstr ""
|
13429 |
|
13430 |
+
#: includes/hud-autofix-setup.php:297
|
13431 |
msgid "Comet Cache Plugin htaccess code was not found in BPS Custom Code"
|
13432 |
msgstr ""
|
13433 |
|
13434 |
+
#: includes/hud-autofix-setup.php:297
|
13435 |
msgid ""
|
13436 |
" click the Unlock htaccess File button, then go to the Comet Cache plugin "
|
13437 |
"settings page, choose and save the Comet Cache plugin settings that you want "
|
13438 |
"to use and then run the "
|
13439 |
msgstr ""
|
13440 |
|
13441 |
+
#: includes/hud-autofix-setup.php:297
|
13442 |
msgid ""
|
13443 |
"Note: If you change your Comet Cache Plugin settings at a later time then "
|
13444 |
"repeat these steps."
|
13445 |
msgstr ""
|
13446 |
|
13447 |
+
#: includes/hud-autofix-setup.php:322
|
13448 |
msgid ""
|
13449 |
"Comet Cache is deactivated and Comet Cache htaccess code was found in your "
|
13450 |
"Root htaccess file"
|
13451 |
msgstr ""
|
13452 |
|
13453 |
+
#: includes/hud-autofix-setup.php:322
|
13454 |
msgid ""
|
13455 |
"If you have deactivated Comet Cache temporarily then disregard this message."
|
13456 |
msgstr ""
|
13457 |
|
13458 |
+
#: includes/hud-autofix-setup.php:322
|
13459 |
msgid ""
|
13460 |
"If you are planning on permanently uninstalling Comet Cache then run the "
|
13461 |
msgstr ""
|
13462 |
|
13463 |
+
#: includes/hud-autofix-setup.php:322
|
13464 |
msgid " after you have uninstalled/deleted the Comet Cache plugin."
|
13465 |
msgstr ""
|
13466 |
|
13467 |
+
#: includes/hud-autofix-setup.php:375
|
13468 |
msgid ""
|
13469 |
"WP Fastest Cache (WPFC) htaccess code was not found in your Root htaccess "
|
13470 |
"file"
|
13471 |
msgstr ""
|
13472 |
|
13473 |
+
#: includes/hud-autofix-setup.php:375 includes/hud-autofix-setup.php:382
|
13474 |
msgid "If you just installed WP Fastest Cache then go to the "
|
13475 |
msgstr ""
|
13476 |
|
13477 |
+
#: includes/hud-autofix-setup.php:375
|
13478 |
msgid ""
|
13479 |
" click the Unlock htaccess File button, then go to the WPFC plugin settings "
|
13480 |
"page, choose and save the WPFC plugin settings that you want to use and then "
|
13481 |
"run the "
|
13482 |
msgstr ""
|
13483 |
|
13484 |
+
#: includes/hud-autofix-setup.php:375
|
13485 |
msgid " to automatically setup/combine WPFC and BPS htaccess code together."
|
13486 |
msgstr ""
|
13487 |
|
13488 |
+
#: includes/hud-autofix-setup.php:382
|
13489 |
msgid ""
|
13490 |
"WP Fastest Cache (WPFC) Plugin htaccess code was not found in BPS Custom Code"
|
13491 |
msgstr ""
|
13492 |
|
13493 |
+
#: includes/hud-autofix-setup.php:382
|
13494 |
msgid ""
|
13495 |
" click the Unlock htaccess File button, then go to the WP Fastest Cache "
|
13496 |
"plugin settings page, choose and save the WP Fastest Cache plugin settings "
|
13497 |
"that you want to use and then run the "
|
13498 |
msgstr ""
|
13499 |
|
13500 |
+
#: includes/hud-autofix-setup.php:382
|
13501 |
msgid ""
|
13502 |
" to automatically setup/combine WP Fastest Cache and BPS htaccess code "
|
13503 |
"together."
|
13504 |
msgstr ""
|
13505 |
|
13506 |
+
#: includes/hud-autofix-setup.php:382
|
13507 |
msgid ""
|
13508 |
"Note: If you change your WP Fastest Cache Plugin settings at a later time "
|
13509 |
"then repeat these steps."
|
13510 |
msgstr ""
|
13511 |
|
13512 |
+
#: includes/hud-autofix-setup.php:407
|
13513 |
msgid ""
|
13514 |
"WP Fastest Cache (WPFC) is deactivated and WPFC htaccess code was found in "
|
13515 |
"your Root htaccess file"
|
13516 |
msgstr ""
|
13517 |
|
13518 |
+
#: includes/hud-autofix-setup.php:407
|
13519 |
msgid "If you have deactivated WPFC temporarily then disregard this message."
|
13520 |
msgstr ""
|
13521 |
|
13522 |
+
#: includes/hud-autofix-setup.php:407
|
13523 |
msgid "If you are planning on permanently uninstalling WPFC then run the "
|
13524 |
msgstr ""
|
13525 |
|
13526 |
+
#: includes/hud-autofix-setup.php:407
|
13527 |
msgid " after you have uninstalled/deleted the WPFC plugin."
|
13528 |
msgstr ""
|
13529 |
|
13530 |
+
#: includes/hud-autofix-setup.php:451
|
13531 |
msgid "WP Rocket htaccess code was not found in your Root htaccess file"
|
13532 |
msgstr ""
|
13533 |
|
13534 |
+
#: includes/hud-autofix-setup.php:451 includes/hud-autofix-setup.php:458
|
13535 |
msgid "If you just installed WP Rocket then go to the "
|
13536 |
msgstr ""
|
13537 |
|
13538 |
+
#: includes/hud-autofix-setup.php:451 includes/hud-autofix-setup.php:458
|
13539 |
msgid ""
|
13540 |
" click the Unlock htaccess File button, then go to the WP Rocket plugin "
|
13541 |
"settings page, choose and save the WP Rocket plugin settings that you want "
|
13542 |
"to use and then run the "
|
13543 |
msgstr ""
|
13544 |
|
13545 |
+
#: includes/hud-autofix-setup.php:451 includes/hud-autofix-setup.php:458
|
13546 |
msgid ""
|
13547 |
" to automatically setup/combine WP Rocket and BPS htaccess code together."
|
13548 |
msgstr ""
|
13549 |
|
13550 |
+
#: includes/hud-autofix-setup.php:458
|
13551 |
msgid "WP Rocket Plugin htaccess code was not found in BPS Custom Code"
|
13552 |
msgstr ""
|
13553 |
|
13554 |
+
#: includes/hud-autofix-setup.php:458
|
13555 |
msgid ""
|
13556 |
"Note: If you change your WP Rocket Plugin settings at a later time then "
|
13557 |
"repeat these steps."
|
13558 |
msgstr ""
|
13559 |
|
13560 |
+
#: includes/hud-autofix-setup.php:483
|
13561 |
msgid ""
|
13562 |
"WP Rocket is deactivated and WP Rocket htaccess code was found in your Root "
|
13563 |
"htaccess file"
|
13564 |
msgstr ""
|
13565 |
|
13566 |
+
#: includes/hud-autofix-setup.php:483
|
13567 |
msgid ""
|
13568 |
"If you have deactivated WP Rocket temporarily then disregard this message."
|
13569 |
msgstr ""
|
13570 |
|
13571 |
+
#: includes/hud-autofix-setup.php:483
|
13572 |
msgid "If you are planning on permanently uninstalling WP Rocket then run the "
|
13573 |
msgstr ""
|
13574 |
|
13575 |
+
#: includes/hud-autofix-setup.php:483
|
13576 |
msgid " after you have uninstalled/deleted the WP Rocket plugin."
|
13577 |
msgstr ""
|
13578 |
|
13579 |
+
#: includes/hud-autofix-setup.php:527
|
13580 |
msgid ""
|
13581 |
"LiteSpeed Cache Plugin htaccess code was not found in your Root htaccess file"
|
13582 |
msgstr ""
|
13583 |
|
13584 |
+
#: includes/hud-autofix-setup.php:527 includes/hud-autofix-setup.php:534
|
13585 |
msgid "If you just installed LiteSpeed Cache then go to the "
|
13586 |
msgstr ""
|
13587 |
|
13588 |
+
#: includes/hud-autofix-setup.php:527 includes/hud-autofix-setup.php:534
|
13589 |
msgid ""
|
13590 |
" click the Unlock htaccess File button, then go to the LiteSpeed Cache "
|
13591 |
"plugin settings page, choose and save the LiteSpeed Cache plugin settings "
|
13592 |
"that you want to use and then run the "
|
13593 |
msgstr ""
|
13594 |
|
13595 |
+
#: includes/hud-autofix-setup.php:527 includes/hud-autofix-setup.php:534
|
13596 |
msgid ""
|
13597 |
" to automatically setup/combine LiteSpeed Cache and BPS htaccess code "
|
13598 |
"together."
|
13599 |
msgstr ""
|
13600 |
|
13601 |
+
#: includes/hud-autofix-setup.php:534
|
13602 |
msgid "LiteSpeed Cache Plugin htaccess code was not found in BPS Custom Code"
|
13603 |
msgstr ""
|
13604 |
|
13605 |
+
#: includes/hud-autofix-setup.php:534
|
13606 |
msgid ""
|
13607 |
"Note: If you change your LiteSpeed Cache Plugin settings at a later time "
|
13608 |
"then repeat these steps."
|
13609 |
msgstr ""
|
13610 |
|
13611 |
+
#: includes/hud-autofix-setup.php:560
|
13612 |
msgid ""
|
13613 |
"LiteSpeed Cache Plugin is deactivated and LiteSpeed Cache htaccess code was "
|
13614 |
"found in your Root htaccess file"
|
13615 |
msgstr ""
|
13616 |
|
13617 |
+
#: includes/hud-autofix-setup.php:560
|
13618 |
msgid ""
|
13619 |
"If you have deactivated LiteSpeed Cache temporarily then disregard this "
|
13620 |
"message."
|
13621 |
msgstr ""
|
13622 |
|
13623 |
+
#: includes/hud-autofix-setup.php:560
|
13624 |
msgid ""
|
13625 |
"If you are planning on permanently uninstalling LiteSpeed Cache then run the "
|
13626 |
msgstr ""
|
13627 |
|
13628 |
+
#: includes/hud-autofix-setup.php:560
|
13629 |
msgid " after you have uninstalled/deleted the LiteSpeed Cache plugin."
|
13630 |
msgstr ""
|
13631 |
|
14508 |
msgid "Run a new MScan scan"
|
14509 |
msgstr ""
|
14510 |
|
14511 |
+
#: includes/hud-dismiss-functions.php:888
|
14512 |
+
#: includes/hud-dismiss-functions.php:895
|
14513 |
+
msgid "Folder|File"
|
14514 |
+
msgstr ""
|
14515 |
+
|
14516 |
+
#: includes/hud-dismiss-functions.php:888
|
14517 |
+
msgid " Script UID"
|
14518 |
+
msgstr ""
|
14519 |
+
|
14520 |
+
#: includes/hud-dismiss-functions.php:895
|
14521 |
+
msgid " File Owner UID"
|
14522 |
+
msgstr ""
|
14523 |
+
|
14524 |
+
#: includes/hud-dismiss-functions.php:912
|
14525 |
msgid "Script|File Owner User ID Mismatch Notice"
|
14526 |
msgstr ""
|
14527 |
|
14528 |
+
#: includes/hud-dismiss-functions.php:912
|
14529 |
+
msgid ""
|
14530 |
+
"You have different Script or File Owner User ID's for this folder or file: "
|
14531 |
+
msgstr ""
|
14532 |
+
|
14533 |
+
#: includes/hud-dismiss-functions.php:912
|
14534 |
msgid ""
|
14535 |
+
"All Script and File Owner User ID's must be the same in order for BPS and "
|
14536 |
+
"other things to function normally."
|
14537 |
msgstr ""
|
14538 |
|
14539 |
+
#: includes/hud-dismiss-functions.php:912
|
14540 |
msgid ""
|
14541 |
+
"For help fixing this problem, please post a new reply in this forum topic: "
|
14542 |
+
msgstr ""
|
14543 |
+
|
14544 |
+
#: includes/hud-dismiss-functions.php:912
|
14545 |
+
msgid "Script|File Owner User ID Mismatch Forum Topic"
|
14546 |
msgstr ""
|
14547 |
|
14548 |
+
#: includes/hud-dismiss-functions.php:1006
|
14549 |
+
msgid "BPS Pro 25% Off Sale April 4 - April 11"
|
14550 |
msgstr ""
|
14551 |
|
14552 |
+
#: includes/hud-dismiss-functions.php:1006
|
14553 |
msgid ""
|
14554 |
"One-time Purchase Price: $52.50. No Recurring Yearly Costs Or Subscriptions. "
|
14555 |
"Unlimited installations. Free Upgrades For Life. Free Technical Support For "
|
14556 |
"Life."
|
14557 |
msgstr ""
|
14558 |
|
14559 |
+
#: includes/hud-dismiss-functions.php:1006
|
14560 |
msgid "Buy BPS Pro"
|
14561 |
msgstr ""
|
14562 |
|
readme.txt
CHANGED
@@ -4,8 +4,8 @@ Donate link: https://wordpress.org/support/view/plugin-reviews/bulletproof-secur
|
|
4 |
Tags: security, secure, malware scanner, login security, firewall, security plugin, wordpress security, login, bruteforce, backup, exploit, infection, protection, virus, anti-virus, logout, spam, anti-spam
|
5 |
Requires at least: 3.8
|
6 |
Requires PHP: 7.0
|
7 |
-
Tested up to: 5.9.
|
8 |
-
Stable tag:
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
4 |
Tags: security, secure, malware scanner, login security, firewall, security plugin, wordpress security, login, bruteforce, backup, exploit, infection, protection, virus, anti-virus, logout, spam, anti-spam
|
5 |
Requires at least: 3.8
|
6 |
Requires PHP: 7.0
|
7 |
+
Tested up to: 5.9.2
|
8 |
+
Stable tag: 6.0
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|