From 8e439f1bd020461974787613535b91db4262de26 Mon Sep 17 00:00:00 2001
From: Sergey Biryukov
Date: Wed, 18 Nov 2015 17:41:21 +0000
Subject: [PATCH] I18N: Move translatable Codex URLs to separate strings in
`wp-includes/ms-load.php`.
Props ramiy.
Fixes #34687.
git-svn-id: https://develop.svn.wordpress.org/trunk@35668 602fd350-edb4-49c9-b593-d223f7449a82
---
src/wp-includes/ms-load.php | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/src/wp-includes/ms-load.php b/src/wp-includes/ms-load.php
index 923d4e720d..a192315523 100644
--- a/src/wp-includes/ms-load.php
+++ b/src/wp-includes/ms-load.php
@@ -305,7 +305,10 @@ function ms_not_installed( $domain, $path ) {
) . '
';
}
$msg .= '' . __( 'What do I do now?' ) . ' ';
- $msg .= __( 'Read the bug report page. Some of the guidelines there may help you figure out what went wrong.' );
+ /* translators: %s: Codex URL */
+ $msg .= sprintf( __( 'Read the bug report 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:' ) . '
';
foreach ( $wpdb->tables('global') as $t => $table ) {
if ( 'sitecategories' == $t )