diff --git a/drupalorg/drupalorg.module b/drupalorg/drupalorg.module
index 6f9e0c6d1c64e18c95114511f9f593ae7983272a..19c5b5677c676ddd90250a4929706fbf431c8679 100644
--- a/drupalorg/drupalorg.module
+++ b/drupalorg/drupalorg.module
@@ -773,6 +773,11 @@ function drupalorg_help($path, $args) {
         ]) . '</p>';
       }
       break;
+
+    case 'node/%/edit/releases':
+      return '<p>' . t('“Supported” generally means you will resolve security issues <a href="!contacted-security">when contacted by the security team</a>, fix bugs when you are able, and any additional support you would like to provide as a maintainer.', [
+        '!contacted-security' => url('drupal-security-team/contacted-by-the-security-team-now-what'),
+      ]) . '</p><p>' . t('When a release series is unsupported, site maintainers using affected versions will be alerted that they are running unsupported software. It is best to give people at least a few weeks to upgrade by leaving two release series supported. It is also ideal to keep supported versions that cover compatibility with all currently-supported versions of Drupal core.') . '</p>';
   }
 
 }