Don't translate "you haven't installed" text yet, because text domain isn't installed. Props nbachiyski.
git-svn-id: https://develop.svn.wordpress.org/trunk@5615 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
c92fe17918
commit
46745ee278
@ -99,7 +99,7 @@ function get_the_content($more_link_text = '(more...)', $stripteaser = 0, $more_
|
||||
} else {
|
||||
$output = balanceTags($output);
|
||||
if ( ! empty($more_link_text) )
|
||||
$output .= ' <a href="'. get_permalink() . "#more-$id\" class=\"more-link\">$more_link_text</a>";
|
||||
$output .= ' <a href="' . get_permalink() . '#more-' . $id . '" class="morelink">' . $more_link_text . '</a>';
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -147,10 +147,7 @@ if ( !is_blog_installed() && (strpos($_SERVER['PHP_SELF'], 'install.php') === fa
|
||||
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