From 438666badd0c91fe0c095c345e56a32dc7d106af Mon Sep 17 00:00:00 2001 From: Andrew Ozz Date: Sun, 16 Aug 2009 05:51:36 +0000 Subject: [PATCH] Fix non-translated strings in dashboard, fixes #10617 git-svn-id: https://develop.svn.wordpress.org/trunk@11827 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-admin/includes/dashboard.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-admin/includes/dashboard.php b/wp-admin/includes/dashboard.php index 64eb376be6..236b19ca79 100644 --- a/wp-admin/includes/dashboard.php +++ b/wp-admin/includes/dashboard.php @@ -339,9 +339,9 @@ function wp_dashboard_right_now() { } else { if ( current_user_can( 'switch_themes' ) ) { echo '' . __('Change Theme') . ''; - printf('Theme %1$s', $ct->title); + printf( __('Theme %1$s'), $ct->title ); } else { - printf('Theme %1$s', $ct->title); + printf( __('Theme %1$s'), $ct->title ); } } echo '

';