Localize the "you haven't installed WP yet" message. fixes #4370
git-svn-id: https://develop.svn.wordpress.org/trunk@5606 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
8233bb1c4f
commit
2451e0e33f
@ -146,7 +146,11 @@ if ( !is_blog_installed() && (strpos($_SERVER['PHP_SELF'], 'install.php') === fa
|
||||
$link = 'install.php';
|
||||
else
|
||||
$link = 'wp-admin/install.php';
|
||||
wp_die(sprintf("It doesn't look like you've installed WP yet. Try running <a href='%s'>install.php</a>.", $link));
|
||||
|
||||
wp_die( sprintf(
|
||||
__( 'It doesn’t look like you’ve installed WP yet. Try running <a href="%s">install.php</a>.' ),
|
||||
$link
|
||||
) );
|
||||
}
|
||||
|
||||
require (ABSPATH . WPINC . '/formatting.php');
|
||||
|
Loading…
Reference in New Issue
Block a user