diff --git a/wp-includes/comment-functions.php b/wp-includes/comment-functions.php index 69ef606b57..1480e44255 100644 --- a/wp-includes/comment-functions.php +++ b/wp-includes/comment-functions.php @@ -294,7 +294,7 @@ function comment_ID() { function get_comment_author() { global $comment; if ( empty($comment->comment_author) ) - $author = 'Anonymous'; + $author = __('Anonymous'); else $author = $comment->comment_author; return apply_filters('get_comment_author', $author);