mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-05 02:10:45 +01:00
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:
parent
326befa4ed
commit
62f826c9e5
@ -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>';
|
||||
|
Loading…
Reference in New Issue
Block a user