List tables: After [34006], remove unnecessary context from 'View' string, for consistency with other strings in the same context.

Props MikeHansenMe, subharanjan.
Fixes #34914.

git-svn-id: https://develop.svn.wordpress.org/trunk@35900 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov 2015-12-13 18:36:22 +00:00
parent b0f06b48aa
commit f5d2251f50
1 changed files with 1 additions and 1 deletions

View File

@ -610,7 +610,7 @@ function _wp_dashboard_recent_comments_row( &$comment, $show_date = true ) {
}
if ( '1' === $comment->comment_approved ) {
$actions['view'] = '<a class="comment-link" href="' . esc_url( get_comment_link( $comment ) ) . '">' . _x( 'View', 'verb' ) . '</a>';
$actions['view'] = '<a class="comment-link" href="' . esc_url( get_comment_link( $comment ) ) . '">' . __( 'View' ) . '</a>';
}
/**