Visual and English tweaks throughout.

git-svn-id: https://develop.svn.wordpress.org/trunk@7230 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Matt Mullenweg
2008-03-11 07:23:07 +00:00
parent 4af580ebbd
commit bde39aec07
12 changed files with 64 additions and 32 deletions

View File

@@ -108,6 +108,9 @@ foreach ( $stati as $status => $label ) {
$status_links[] = "<li><a href=\"edit-comments.php?comment_status=$status\"$class>" . $label . '</a>';
}
$status_links = apply_filters( 'comment_status_links', $status_links );
echo implode(' | </li>', $status_links) . '</li>';
unset($status_links);
?>
@@ -214,10 +217,16 @@ if ($comments) {
<div id="ajax-response"></div>
<?php
} else {
} elseif ( 'moderated' == $_GET['comment_status'] ) {
?>
<p>
<strong><?php _e('No results found.') ?></strong>
<?php _e('No comments awaiting moderation&hellip; yet.') ?>
</p>
<?php
} else {
?>
<p>
<?php _e('No results found.') ?>
</p>
<?php
}