Localize the "you haven't installed WP yet" message. fixes #4370
git-svn-id: http://svn.automattic.com/wordpress/trunk@5606 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
ba3abf0733
commit
990ca286c1
|
@ -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