Don't translate "you haven't installed" text yet, because text domain isn't installed. Props nbachiyski.

git-svn-id: http://svn.automattic.com/wordpress/trunk@5615 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
rob1n 2007-05-31 12:29:46 +00:00
parent 01af55cbf7
commit 71a095d0ee
2 changed files with 2 additions and 5 deletions

View File

@ -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>';
}
}

View File

@ -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&#8217;t look like you&#8217;ve installed WP yet. Try running <a href="%s">install.php</a>.' ),
$link
) );
wp_die( sprintf( 'It doesn&#8217;t look like you&#8217;ve installed WP yet. Try running <a href="%s">install.php</a>.', $link ) );
}
require (ABSPATH . WPINC . '/formatting.php');