? Drupal.simplify.story.help.patch Index: modules/story.module =================================================================== RCS file: /cvs/drupal/drupal/modules/story.module,v retrieving revision 1.164 diff -u -r1.164 story.module --- modules/story.module 15 Jan 2005 08:01:09 -0000 1.164 +++ modules/story.module 15 Jan 2005 19:06:12 -0000 @@ -13,14 +13,16 @@ switch ($section) { case 'admin/modules#description': return t('Enables users to submit stories, articles or similar content.'); + case 'node/add#story': case 'admin/settings/story': - return t("Stories are articles in their simplest form: they have a title, a teaser and a body, but can be extended by other modules. The teaser is part of the body too. Stories may be used as a personal blog or for news articles."); case 'admin/help#story': - return t("Stories are articles in their simplest form: they have a title, a teaser and a body, but can be extended by other modules. The teaser is part of the body too. Stories may be used as a personal blog or for news articles. By default, no menu item, or navigation element is created for a story. An extra feature of a story is, that an administrator can specify a submission guideline and enforce a minimum word count for user submitted stories"); + $help = t("Stories are articles in their simplest form: they have a title, a teaser and a body, but can be extended by other modules. The teaser is part of the body too. Stories may be used as a personal blog or for news articles."); + if ($section == 'admin/help#story') { + return $help . ' ' . t('By default, no menu item, or navigation element is created for a story. An extra feature of a story is, that an administrator can specify a submission guideline and enforce a minimum word count for user submitted stories.'); + } + return $help; case 'node/add/story': return variable_get('story_help', ''); - case 'node/add#story': - return t('Stories are articles in their simplest form: they have a title, a teaser and a body, but can be extended by other modules. The teaser is part of the body too. Stories may be used as a personal blog or for news articles.'); } }