Fix non-translated strings in dashboard, fixes #10617

git-svn-id: https://develop.svn.wordpress.org/trunk@11827 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Ozz 2009-08-16 05:51:36 +00:00
parent 830ecf4108
commit 438666badd
1 changed files with 2 additions and 2 deletions

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>';