i18n fix from momo360modena and nbachiyski. fixes #4523

git-svn-id: https://develop.svn.wordpress.org/trunk@5909 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2007-08-21 00:35:55 +00:00
parent 0983dd3c00
commit 349e0bb2d4
1 changed files with 3 additions and 3 deletions

View File

@ -164,9 +164,9 @@ if ( $extra_comments ) : ?>
<td><a href="edit-comments.php?s=<?php comment_author_IP() ?>&amp;mode=edit"><?php comment_author_IP() ?></a></td>
<td><?php comment_excerpt(); ?></td>
<td>
<?php if ('unapproved' == $comment_status) { ?>
(Unapproved)
<?php } else { ?>
<?php if ('unapproved' == $comment_status) {
_e('Unapproved');
} else { ?>
<a href="<?php echo get_permalink($comment->comment_post_ID); ?>#comment-<?php comment_ID() ?>" class="edit"><?php _e('View') ?></a>
<?php } ?>
</td>