wp_list_comments()で出力されるコメント表示が日本語表記になると、ありがたいです。
具体的には、wp-includes/comment-template.php(svn rev.9771)の
1152行
<?php printf(__('<cite class="fn">%s</cite> Says:'), get_comment_author_link()) ?>
の<cite class="fn">%s</cite> Says:部分と
1159行
<div class="comment-meta commentmetadata"><a href="<?php echo htmlspecialchars( get_comment_link( $comment->comment_ID, $page ) ) ?>"><?php printf(__('%1$s at %2$s'), get_comment_date('F jS, Y'), get_comment_time()) ?></a><?php edit_comment_link('edit',' ','') ?></div>
の'F jS, Y' と edit 部分です。
こちらのほうは
<div class="comment-meta commentmetadata"><a href="<?php echo htmlspecialchars( get_comment_link( $comment->comment_ID, $page ) ) ?>"><?php printf(__('%1$s at %2$s'), get_comment_date(__('F jS, Y')), get_comment_time()) ?></a><?php edit_comment_link(__('Edit This'),' ','') ?></div>
みたいな修正しないと無理でしょうか?