diff --git a/wp-admin/includes/dashboard.php b/wp-admin/includes/dashboard.php
index e517f95..97ffce4 100644
--- a/wp-admin/includes/dashboard.php
+++ b/wp-admin/includes/dashboard.php
@@ -564,7 +564,13 @@ function wp_dashboard_recent_drafts( $drafts = false ) {
 	if ( count( $drafts ) > 3 ) {
 		echo '<p class="view-all"><a href="' . esc_url( admin_url( 'edit.php?post_status=draft' ) ) . '" aria-label="' . __( 'View all drafts' ) . '">' . _x( 'View all', 'drafts' ) . "</a></p>\n";
  	}
-	echo '<h2 class="hide-if-no-js">' . __( 'Drafts' ) . "</h2>\n<ul>";
+	echo '<h2 class="hide-if-no-js">';	 
+		if ( count( $drafts ) > 1 ) :
+	 		echo __( 'Drafts' );
+		else:
+			echo __( 'Draft' );
+		endif;
+	echo "</h2>\n<ul>";
 
 	$drafts = array_slice( $drafts, 0, 3 );
 	foreach ( $drafts as $draft ) {
