Text Changes: Improve consistency of admin error notices.
This changeset replaces `<strong>Error</strong>:` with `<strong>Error:</strong>`, for better consistency. Props transl8or, mihaidumitrascu, audrasjb. Fixes #50785. Built from https://develop.svn.wordpress.org/trunk@53458 git-svn-id: http://core.svn.wordpress.org/trunk@53047 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
@@ -3697,7 +3697,7 @@ class wpdb {
|
||||
// Make sure the server has the required MySQL version.
|
||||
if ( version_compare( $this->db_version(), $required_mysql_version, '<' ) ) {
|
||||
/* translators: 1: WordPress version number, 2: Minimum required MySQL version number. */
|
||||
return new WP_Error( 'database_version', sprintf( __( '<strong>Error</strong>: WordPress %1$s requires MySQL %2$s or higher' ), $wp_version, $required_mysql_version ) );
|
||||
return new WP_Error( 'database_version', sprintf( __( '<strong>Error:</strong> WordPress %1$s requires MySQL %2$s or higher' ), $wp_version, $required_mysql_version ) );
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user