You appear to be a bot. Output may be restricted
Description
Gets translated text to enable outbound requests.
Usage
$string = Jetpack_Cxn_Tests::helper_enable_outbound_requests( $protocol );
Parameters
- $protocol
- ( string ) required – Either 'HTTP' or 'HTTPS'.
Returns
string The translated text.
Source
File name: jetpack/_inc/lib/debugger/class-jetpack-cxn-tests.php
Lines:
1 to 11 of 11
protected function helper_enable_outbound_requests( $protocol ) { return sprintf( /* translators: %1$s - request protocol, either http or https */ __( 'Your server did not successfully connect to the Jetpack server using %1$s Please ask your hosting provider to confirm your server can make outbound requests to jetpack.com.', 'jetpack' ), $protocol ); }