ngettext() fix for Right Now

git-svn-id: http://svn.automattic.com/wordpress/trunk@9267 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
markjaquith 2008-10-21 20:50:14 +00:00
parent b07b5fe1be
commit f6943d33bc

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();