From 62f826c9e596b2575ae7daa8a7ed1ac9c5f485d0 Mon Sep 17 00:00:00 2001 From: azaozz Date: Sun, 16 Aug 2009 05:51:36 +0000 Subject: [PATCH] Fix non-translated strings in dashboard, fixes #10617 git-svn-id: http://svn.automattic.com/wordpress/trunk@11827 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- 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 '

';