You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$strings[ 'silentcaptcha_detect_bots' ] = sprintf( __( '%s will detect bots that attempt to post comment SPAM to your site, without challenging your legitimate visitors.', 'wp-simple-firewall' ), $silentCaptcha );
90
+
}
91
+
92
+
if ( $stepSlug === 'login_protection' ) {
93
+
$strings[ 'silentcaptcha_detect_login_bots' ] = sprintf( __( '%s will detect bots that attempt to login to your site, without challenging your legitimate users.', 'wp-simple-firewall' ), $silentCaptcha );
Copy file name to clipboardExpand all lines: src/lib/src/ActionRouter/Actions/Render/PluginAdminPages/PageLicense.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -158,7 +158,7 @@ private function getProFeatureStrings() :array {
158
158
'href' => 'https://clk.shldscrty.com/km'
159
159
],
160
160
[
161
-
'title' => sprintf( '%s: %s', __( 'Intelligence From The Collective', 'wp-simple-firewall' ), 'ShieldNET' ),
161
+
'title' => sprintf( '%s: %s', __( 'Intelligence From The Collective', 'wp-simple-firewall' ), $con->labels->getBrandName( 'shieldnet' ) ),
162
162
'lines' => [
163
163
sprintf( __( 'Take advantage of the intelligence gathered throughout the entire %s network to better protect your WordPress sites', 'wp-simple-firewall' ), $con->labels->Name ),
sprintf( __( 'Block 99.9%% of all WordPress comment SPAM using silentCAPTCHA.', 'wp-simple-firewall' ), $pluginName ),
115
-
sprintf( __( "silentCAPTCHA is %s's exclusive bot-detection technology that removes the needs for visible CAPTCHAs and similar visitor challenges.", 'wp-simple-firewall' ), $pluginName ),
115
+
sprintf( __( 'Block 99.9%% of all WordPress comment SPAM using %s.', 'wp-simple-firewall' ), $silentCaptcha ),
116
+
sprintf( __( "%s is %s's exclusive bot-detection technology that removes the needs for visible CAPTCHAs and similar visitor challenges.", 'wp-simple-firewall' ), $silentCaptcha, $pluginName ),
116
117
];
117
118
break;
118
119
case'enable_comments_human_spam_filter':
@@ -474,23 +475,23 @@ public function getFor( string $key ) :array {
sprintf( __( "%s's silentCAPTCHA system uses ALTCHA, that challenges bots to perform complex work.", 'wp-simple-firewall' ), $pluginName ),
481
+
sprintf( __( "%s's %s system uses ALTCHA, that challenges bots to perform complex work.", 'wp-simple-firewall' ), $pluginName, $silentCaptcha ),
481
482
__( "This complex work is compute intensive and inflicts a processing cost on bots. Bots typically won't do the work, and this helps to discriminate between bots and humans.", 'wp-simple-firewall' ),
482
483
__( "More complexity in the challenge is a bigger cost to bots, but may present a burden for legitimate visitors that use slower devices.", 'wp-simple-firewall' ),
483
484
__( "Adaptive complexity will try to present the most suitable challenge depending on the type of visitor.", 'wp-simple-firewall' ),
__( "Every IP address accessing your site gets its own unique visitor score - the higher the score, the better the visitor i.e. the more likely it's human.", 'wp-simple-firewall' ),
491
492
__( "A score of '100' would mean it's almost certainly good, a score of '0' means it's highly likely to be a bad bot.", 'wp-simple-firewall' ),
492
493
__( 'When a bot tries to login, or post a comment, we test its visitor score.', 'wp-simple-firewall' )
493
-
.''.__( 'If the visitor score fails to meet your Minimum silentCAPTCHA Score, we may prevent the request (such as login, WP comment etc.). If its higher, we allow it.', 'wp-simple-firewall' ),
494
+
.''.sprintf( __( 'If the visitor score fails to meet your Minimum %s Score, we may prevent the request (such as login, WP comment etc.). If its higher, we allow it.', 'wp-simple-firewall' ), $silentCaptcha ),
494
495
__( "This means: choose a higher minimum score to be more strict and capture more bots (but potentially block someone that appears to be a bot, but isn't).", 'wp-simple-firewall' )
495
496
.''.__( "Or choose a lower minimum score to perhaps allow through more bots (but reduce the chances of accidentally blocking legitimate visitors).", 'wp-simple-firewall' ),
496
497
];
@@ -673,14 +674,15 @@ public function getFor( string $key ) :array {
sprintf( __( '%1$s is a dedicated email delivery service from %2$s.', 'wp-simple-firewall' ), 'SureSend', $pluginName ),
682
+
/* translators: %1$s: email service brand name, %2$s: security plugin name */
683
+
sprintf( __( '%1$s is a dedicated email delivery service from %2$s.', 'wp-simple-firewall' ), $sureSend, $pluginName ),
682
684
__( 'The purpose is to improve WordPress email reliability for critical emails.', 'wp-simple-firewall' ),
683
-
sprintf( __( "If you're not using a dedicated email service provider to send WordPress emails, you should enable %s for these important emails.", 'wp-simple-firewall' ), 'SureSend' ),
685
+
sprintf( __( "If you're not using a dedicated email service provider to send WordPress emails, you should enable %s for these important emails.", 'wp-simple-firewall' ), $sureSend ),
684
686
__( "This isn't a replacement for a dedicated email service.", 'wp-simple-firewall' ),
685
687
__( "Please read the information and blog links below to fully understand this service and its limitations.", 'wp-simple-firewall' ),
686
688
];
@@ -1503,11 +1505,12 @@ public function getFor( string $key ) :array {
$summary = __( 'Validate Email Addresses When User Attempts To Register', 'wp-simple-firewall' );
1508
1511
$desc = [
1509
1512
__( 'Validate Email Addresses When User Attempts To Register.', 'wp-simple-firewall' ),
1510
-
__( 'To validate an email your site sends a request to the ShieldNET API and may cause a small delay during the user registration request.', 'wp-simple-firewall' ),
1513
+
sprintf( __( 'To validate an email your site sends a request to the %s API and may cause a small delay during the user registration request.', 'wp-simple-firewall' ), $shieldNet ),
0 commit comments