Index: wp-admin/users.php
===================================================================
--- wp-admin/users.php	(revision 17347)
+++ wp-admin/users.php	(working copy)
@@ -161,7 +161,7 @@
 <p><?php _e('You have specified these users for deletion:'); ?></p>
 <ul>
 <?php
-	$go_delete = false;
+	$go_delete = 0;
 	foreach ( (array) $userids as $id ) {
 		$id = (int) $id;
 		$user = new WP_User($id);
@@ -169,13 +169,13 @@
 			echo "<li>" . sprintf(__('ID #%1s: %2s <strong>The current user will not be deleted.</strong>'), $id, $user->user_login) . "</li>\n";
 		} else {
 			echo "<li><input type=\"hidden\" name=\"users[]\" value=\"" . esc_attr($id) . "\" />" . sprintf(__('ID #%1s: %2s'), $id, $user->user_login) . "</li>\n";
-			$go_delete = true;
+			$go_delete++;
 		}
 	}
 	?>
 	</ul>
 <?php if ( $go_delete ) : ?>
-	<fieldset><p><legend><?php _e('What should be done with posts and links owned by this user?'); ?></legend></p>
+	<fieldset><p><legend><?php echo _n('What should be done with posts and links owned by this user?', 'What should be done with posts and links owned by these users?', $go_delete ); ?></legend></p>
 	<ul style="list-style:none;">
 		<li><label><input type="radio" id="delete_option0" name="delete_option" value="delete" checked="checked" />
 		<?php _e('Delete all posts and links.'); ?></label></li>
