From 17e32714159b394cd2793d9ae00c4f766294e648 Mon Sep 17 00:00:00 2001 From: Andrew Nacin Date: Sat, 7 Dec 2013 00:38:13 +0000 Subject: [PATCH] Translator's comment for a date_i18n() string. props netweb. fixes #26470. Built from https://develop.svn.wordpress.org/trunk@26758 git-svn-id: http://core.svn.wordpress.org/trunk@26646 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/includes/dashboard.php | 1 + 1 file changed, 1 insertion(+) diff --git a/wp-admin/includes/dashboard.php b/wp-admin/includes/dashboard.php index e3a0705738..cd41f24509 100644 --- a/wp-admin/includes/dashboard.php +++ b/wp-admin/includes/dashboard.php @@ -594,6 +594,7 @@ function wp_dashboard_recent_posts( $args ) { } elseif ( date( 'Y-m-d', $time ) == $tomorrow ) { $relative = __( 'Tomorrow' ); } else { + /* translators: date and time format for recent posts on the dashboard, see http://php.net/date */ $relative = date_i18n( __( 'M jS' ), $time ); }