Fix non-translated strings in dashboard, fixes #10617

git-svn-id: http://svn.automattic.com/wordpress/trunk@11827 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
azaozz 2009-08-16 05:51:36 +00:00
parent 326befa4ed
commit 62f826c9e5

View File

@ -339,9 +339,9 @@ function wp_dashboard_right_now() {
} else {
if ( current_user_can( 'switch_themes' ) ) {
echo '<a href="themes.php" class="button rbutton">' . __('Change Theme') . '</a>';
printf('Theme <span class="b"><a href="themes.php">%1$s</a></span>', $ct->title);
printf( __('Theme <span class="b"><a href="themes.php">%1$s</a></span>'), $ct->title );
} else {
printf('Theme <span class="b">%1$s</span>', $ct->title);
printf( __('Theme <span class="b">%1$s</span>'), $ct->title );
}
}
echo '</p>';