From 6580aaf8fb171e7901dac48d7a0b3d3e1501337d Mon Sep 17 00:00:00 2001 From: Mark Jaquith Date: Tue, 21 Oct 2008 20:50:14 +0000 Subject: [PATCH] ngettext() fix for Right Now git-svn-id: https://develop.svn.wordpress.org/trunk@9267 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-admin/includes/dashboard.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-admin/includes/dashboard.php b/wp-admin/includes/dashboard.php index ccad8acd3b..aef36b7cbc 100644 --- a/wp-admin/includes/dashboard.php +++ b/wp-admin/includes/dashboard.php @@ -255,9 +255,9 @@ function wp_dashboard_right_now() { $num = "$num"; echo '

'; - 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 '' . __('Change Theme') . ''; + echo ' ' . __('Change Theme') . ''; echo '

'; update_right_now_message();