From a596163f6a07143d638cec063ef5b68df3b33a64 Mon Sep 17 00:00:00 2001 From: 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: http://svn.automattic.com/wordpress/trunk@15293 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- 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 fd3581b69..3372f8a5b 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 ); }