i18n fix from momo360modena and nbachiyski. fixes #4523
git-svn-id: http://svn.automattic.com/wordpress/trunk@5909 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
eb30d086be
commit
d3754cc69b
|
@ -164,9 +164,9 @@ if ( $extra_comments ) : ?>
|
|||
<td><a href="edit-comments.php?s=<?php comment_author_IP() ?>&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>
|
||||
|
|
Loading…
Reference in New Issue