diff --git a/wp-admin/includes/class-wp-comments-list-table.php b/wp-admin/includes/class-wp-comments-list-table.php
index 1600d13c9a..e14ad2aa7b 100644
--- a/wp-admin/includes/class-wp-comments-list-table.php
+++ b/wp-admin/includes/class-wp-comments-list-table.php
@@ -497,7 +497,8 @@ class WP_Comments_List_Table extends WP_List_Table {
echo $post_link . '
';
$this->comments_bubble( $post->ID, $pending_comments );
echo ' ';
- echo "#";
+ $post_type_object = get_post_type_object( $post->post_type );
+ echo "" . $post_type_object->labels->view_item . '';
echo '';
if ( 'attachment' == $post->post_type && ( $thumb = wp_get_attachment_image( $post->ID, array( 80, 60 ), true ) ) )
echo $thumb;