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 {
|
} else {
|
||||||
if ( current_user_can( 'switch_themes' ) ) {
|
if ( current_user_can( 'switch_themes' ) ) {
|
||||||
echo '<a href="themes.php" class="button rbutton">' . __('Change Theme') . '</a>';
|
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 {
|
} else {
|
||||||
printf('Theme <span class="b">%1$s</span>', $ct->title);
|
printf( __('Theme <span class="b">%1$s</span>'), $ct->title );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
echo '</p>';
|
echo '</p>';
|
||||||
|
Loading…
Reference in New Issue
Block a user