I18N: Move translatable Codex URLs to separate strings in wp-includes/ms-load.php.
Props ramiy. Fixes #34687. Built from https://develop.svn.wordpress.org/trunk@35668 git-svn-id: http://core.svn.wordpress.org/trunk@35632 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
@@ -305,7 +305,10 @@ function ms_not_installed( $domain, $path ) {
|
||||
) . '</p>';
|
||||
}
|
||||
$msg .= '<p><strong>' . __( 'What do I do now?' ) . '</strong> ';
|
||||
$msg .= __( 'Read the <a target="_blank" href="https://codex.wordpress.org/Debugging_a_WordPress_Network">bug report</a> page. Some of the guidelines there may help you figure out what went wrong.' );
|
||||
/* translators: %s: Codex URL */
|
||||
$msg .= sprintf( __( 'Read the <a href="%s" target="_blank">bug report</a> page. Some of the guidelines there may help you figure out what went wrong.' ),
|
||||
__( 'https://codex.wordpress.org/Debugging_a_WordPress_Network' )
|
||||
);
|
||||
$msg .= ' ' . __( 'If you’re still stuck with this message, then check that your database contains the following tables:' ) . '</p><ul>';
|
||||
foreach ( $wpdb->tables('global') as $t => $table ) {
|
||||
if ( 'sitecategories' == $t )
|
||||
|
||||
Reference in New Issue
Block a user