mirror of
https://github.com/WordPress/WordPress.git
synced 2025-02-16 11:35:48 +00:00
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:
parent
d9faafbd44
commit
8919d9a88a
@ -305,7 +305,10 @@ function ms_not_installed( $domain, $path ) {
|
|||||||
) . '</p>';
|
) . '</p>';
|
||||||
}
|
}
|
||||||
$msg .= '<p><strong>' . __( 'What do I do now?' ) . '</strong> ';
|
$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>';
|
$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 ) {
|
foreach ( $wpdb->tables('global') as $t => $table ) {
|
||||||
if ( 'sitecategories' == $t )
|
if ( 'sitecategories' == $t )
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '4.4-beta4-35667';
|
$wp_version = '4.4-beta4-35668';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 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.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user