ngettext() fix for Right Now

git-svn-id: https://develop.svn.wordpress.org/trunk@9267 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Mark Jaquith 2008-10-21 20:50:14 +00:00
parent 78af371a68
commit 6580aaf8fb
1 changed files with 2 additions and 2 deletions

View File

@ -255,9 +255,9 @@ function wp_dashboard_right_now() {
$num = "<a href='widgets.php'>$num</a>";
echo '<p>';
printf(__ngettext('Theme %1$s with %2$s Widgets', 'Theme %1$s with %2$s Widgets', $num_widgets), $ct->title, $num);
printf(__ngettext('Theme %1$s with %2$s Widget', 'Theme %1$s with %2$s Widgets', $num_widgets), $ct->title, $num);
if ( $can_switch_themes )
echo '<a href="themes.php" class="rbutton">' . __('Change Theme') . '</a>';
echo ' <a href="themes.php" class="rbutton">' . __('Change Theme') . '</a>';
echo '</p>';
update_right_now_message();