mirror of
https://github.com/WordPress/WordPress.git
synced 2024-12-23 09:37:42 +01:00
Text Changes: Use consistent question wording in database connection error messages.
Props Presskopp. See #44878. Built from https://develop.svn.wordpress.org/trunk@45598 git-svn-id: http://core.svn.wordpress.org/trunk@45409 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
4af4c78a27
commit
b8be081e7e
@ -13,7 +13,7 @@
|
|||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '5.3-alpha-45597';
|
$wp_version = '5.3-alpha-45598';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
@ -1669,8 +1669,8 @@ class wpdb {
|
|||||||
|
|
||||||
$message .= "<ul>\n";
|
$message .= "<ul>\n";
|
||||||
$message .= '<li>' . __( 'Are you sure you have the correct username and password?' ) . "</li>\n";
|
$message .= '<li>' . __( 'Are you sure you have the correct username and password?' ) . "</li>\n";
|
||||||
$message .= '<li>' . __( 'Are you sure that you have typed the correct hostname?' ) . "</li>\n";
|
$message .= '<li>' . __( 'Are you sure you have typed the correct hostname?' ) . "</li>\n";
|
||||||
$message .= '<li>' . __( 'Are you sure that the database server is running?' ) . "</li>\n";
|
$message .= '<li>' . __( 'Are you sure the database server is running?' ) . "</li>\n";
|
||||||
$message .= "</ul>\n";
|
$message .= "</ul>\n";
|
||||||
|
|
||||||
$message .= '<p>' . sprintf(
|
$message .= '<p>' . sprintf(
|
||||||
@ -1827,8 +1827,8 @@ class wpdb {
|
|||||||
) . "</p>\n";
|
) . "</p>\n";
|
||||||
|
|
||||||
$message .= "<ul>\n";
|
$message .= "<ul>\n";
|
||||||
$message .= '<li>' . __( 'Are you sure that the database server is running?' ) . "</li>\n";
|
$message .= '<li>' . __( 'Are you sure the database server is running?' ) . "</li>\n";
|
||||||
$message .= '<li>' . __( 'Are you sure that the database server is not under particularly heavy load?' ) . "</li>\n";
|
$message .= '<li>' . __( 'Are you sure the database server is not under particularly heavy load?' ) . "</li>\n";
|
||||||
$message .= "</ul>\n";
|
$message .= "</ul>\n";
|
||||||
|
|
||||||
$message .= '<p>' . sprintf(
|
$message .= '<p>' . sprintf(
|
||||||
|
Loading…
Reference in New Issue
Block a user