Changeset 52978 for trunk/src/wp-includes/wp-db.php
- Timestamp:
- 03/22/2022 04:23:32 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/wp-db.php
r52423 r52978 1183 1183 wp_load_translations_early(); 1184 1184 1185 $message = '<h1>' . __( 'Can ’t select database' ) . "</h1>\n";1185 $message = '<h1>' . __( 'Cannot select database' ) . "</h1>\n"; 1186 1186 1187 1187 $message .= '<p>' . sprintf( … … 1211 1211 $message .= '<p>' . sprintf( 1212 1212 /* translators: %s: Support forums URL. */ 1213 __( 'If you do n’t know how to set up a database you should <strong>contact your host</strong>. If all else fails you may find help at the <a href="%s">WordPress Support Forums</a>.' ),1213 __( 'If you do not know how to set up a database you should <strong>contact your host</strong>. If all else fails you may find help at the <a href="%s">WordPress Support Forums</a>.' ), 1214 1214 __( 'https://wordpress.org/support/forums/' ) 1215 1215 ) . "</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 can ’t 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 we cannot contact the database server at %2$s. 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>' … … 1816 1816 $message .= '<p>' . sprintf( 1817 1817 /* translators: %s: Support forums URL. */ 1818 __( 'If you ’re unsure what these terms mean you should probably contact your host. If you still need help you can always visit the <a href="%s">WordPress Support Forums</a>.' ),1818 __( 'If you are unsure what these terms mean you should probably contact your host. If you still need help you can always visit the <a href="%s">WordPress Support Forums</a>.' ), 1819 1819 __( 'https://wordpress.org/support/forums/' ) 1820 1820 ) . "</p>\n"; … … 1973 1973 $message .= '<p>' . sprintf( 1974 1974 /* translators: %s: Support forums URL. */ 1975 __( 'If you ’re unsure what these terms mean you should probably contact your host. If you still need help you can always visit the <a href="%s">WordPress Support Forums</a>.' ),1975 __( 'If you are unsure what these terms mean you should probably contact your host. If you still need help you can always visit the <a href="%s">WordPress Support Forums</a>.' ), 1976 1976 __( 'https://wordpress.org/support/forums/' ) 1977 1977 ) . "</p>\n";
Note: See TracChangeset
for help on using the changeset viewer.