From 34ce39c782336552e4d01177a8da054338f394ec Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Sun, 13 Dec 2015 18:37:26 +0000 Subject: [PATCH] List tables: After [34006], remove unnecessary context from 'View' string, for consistency with other strings in the same context. Props MikeHansenMe, subharanjan. Fixes #34914. Built from https://develop.svn.wordpress.org/trunk@35900 git-svn-id: http://core.svn.wordpress.org/trunk@35864 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/includes/dashboard.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-admin/includes/dashboard.php b/wp-admin/includes/dashboard.php index 6679df7768..505862bfd6 100644 --- a/wp-admin/includes/dashboard.php +++ b/wp-admin/includes/dashboard.php @@ -610,7 +610,7 @@ function _wp_dashboard_recent_comments_row( &$comment, $show_date = true ) { } if ( '1' === $comment->comment_approved ) { - $actions['view'] = '' . _x( 'View', 'verb' ) . ''; + $actions['view'] = '' . __( 'View' ) . ''; } /** diff --git a/wp-includes/version.php b/wp-includes/version.php index 24faf9c924..16e789c5f4 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.5-alpha-35899'; +$wp_version = '4.5-alpha-35900'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.