From 15a13b431be745788ed791d9b34fed13b4b0f6bc Mon Sep 17 00:00:00 2001 From: Andrew Nacin Date: Mon, 21 Jun 2010 05:36:18 +0000 Subject: [PATCH] Translate, don't echo. props SergeyBiryukov, fixes #14008 for trunk. git-svn-id: https://develop.svn.wordpress.org/trunk@15293 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-admin/includes/schema.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ); }