diff --git a/wp-admin/includes/schema.php b/wp-admin/includes/schema.php index fd3581b693..3372f8a5b7 100644 --- a/wp-admin/includes/schema.php +++ b/wp-admin/includes/schema.php @@ -768,7 +768,7 @@ Thanks! if ( ! empty ( $errstr ) ) $msg .= ' ' . sprintf( __( 'This resulted in an error message: %s' ), '' . $errstr . '' ); $msg .= '

'; - $msg .= '

' . _e( 'To use a subdomain configuration, you must have a wildcard entry in your DNS. This usually means adding a * hostname record pointing at your web server in your DNS configuration tool.' ) . '

'; + $msg .= '

' . __( 'To use a subdomain configuration, you must have a wildcard entry in your DNS. This usually means adding a * hostname record pointing at your web server in your DNS configuration tool.' ) . '

'; $msg .= '

' . __( 'You can still use your site but any subdomain you create may not be accessible. If you know your DNS is correct, ignore this message.' ) . '

'; return new WP_Error( 'no_wildcard_dns', $msg ); }