Changeset 53131 for trunk/src/wp-includes/wp-db.php
- Timestamp:
- 04/11/2022 11:40:38 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/wp-db.php
r52978 r53131 1187 1187 $message .= '<p>' . sprintf( 1188 1188 /* translators: %s: Database name. */ 1189 __( ' We were able to connect to the database server (which means your username and password is okay) but not able to select the %s database.' ),1189 __( 'The database server could be connected to (which means your username and password is okay) but the %s database could not be selected.' ), 1190 1190 '<code>' . htmlspecialchars( $db, ENT_QUOTES ) . '</code>' 1191 1191 ) . "</p>\n"; … … 1803 1803 $message .= '<p>' . sprintf( 1804 1804 /* translators: 1: wp-config.php, 2: Database host. */ 1805 __( 'This either means that the username and password information in your %1$s file is incorrect or we cannot contact the database server at %2$s. This could mean your host’s database server is down.' ),1805 __( 'This either means that the username and password information in your %1$s file is incorrect or that contact with the database server at %2$s could not be established. This could mean your host’s database server is down.' ), 1806 1806 '<code>wp-config.php</code>', 1807 1807 '<code>' . htmlspecialchars( $this->dbhost, ENT_QUOTES ) . '</code>' … … 1962 1962 $message .= '<p>' . sprintf( 1963 1963 /* translators: %s: Database host. */ 1964 __( 'This means that we lost contact with the database server at %s. This could mean your host’s database server is down.' ),1964 __( 'This means that the contact with the database server at %s was lost. This could mean your host’s database server is down.' ), 1965 1965 '<code>' . htmlspecialchars( $this->dbhost, ENT_QUOTES ) . '</code>' 1966 1966 ) . "</p>\n";
Note: See TracChangeset
for help on using the changeset viewer.