From a19426f36ac4d4cfc1fd320d3a9cd3a95fdf1d6c Mon Sep 17 00:00:00 2001 From: Andrea Fercia Date: Sun, 28 Feb 2016 21:38:33 +0000 Subject: [PATCH] Comments: Add missing placeholder for `printf()` after [36683]. Fixes #35392. git-svn-id: https://develop.svn.wordpress.org/trunk@36767 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/includes/dashboard.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-admin/includes/dashboard.php b/src/wp-admin/includes/dashboard.php index a73587ae89..e62a15e756 100644 --- a/src/wp-admin/includes/dashboard.php +++ b/src/wp-admin/includes/dashboard.php @@ -714,7 +714,7 @@ function _wp_dashboard_recent_comments_row( &$comment, $show_date = true ) { } else { printf( /* translators: 1: type of comment, 2: notification if the comment is pending */ - _x( '%1$s', 'dashboard' ), + _x( '%1$s %2$s', 'dashboard' ), "$type", '' . __( '[Pending]' ) . '' );