Changeset 45932 for trunk/src/wp-includes/ms-load.php
- Timestamp:
- 09/03/2019 12:39:13 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/ms-load.php
r45926 r45932 108 108 wp_die( 109 109 sprintf( 110 /* translators: %s: admin email link*/110 /* translators: %s: Admin email link. */ 111 111 __( 'This site has not been activated yet. If you are having problems activating your site, please contact %s.' ), 112 112 sprintf( '<a href="mailto:%1$s">%1$s</a>', $admin_email ) … … 476 476 if ( ! $wpdb->get_var( $query ) ) { 477 477 $msg .= '<p>' . sprintf( 478 /* translators: %s: table name*/478 /* translators: %s: Table name. */ 479 479 __( '<strong>Database tables are missing.</strong> This means that MySQL is not running, WordPress was not installed properly, or someone deleted %s. You really should look at your database now.' ), 480 480 '<code>' . $wpdb->site . '</code>' … … 482 482 } else { 483 483 $msg .= '<p>' . sprintf( 484 /* translators: 1: site url, 2: table name, 3: database name*/484 /* translators: 1: Site URL, 2: Table name, 3: Database name. */ 485 485 __( '<strong>Could not find site %1$s.</strong> Searched for table %2$s in database %3$s. Is that right?' ), 486 486 '<code>' . rtrim( $domain . $path, '/' ) . '</code>', … … 491 491 $msg .= '<p><strong>' . __( 'What do I do now?' ) . '</strong> '; 492 492 $msg .= sprintf( 493 /* translators: %s: Documentation URL */493 /* translators: %s: Documentation URL. */ 494 494 __( 'Read the <a href="%s" target="_blank">bug report</a> page. Some of the guidelines there may help you figure out what went wrong.' ), 495 495 __( 'https://wordpress.org/support/article/debugging-a-wordpress-network/' )
Note: See TracChangeset
for help on using the changeset viewer.