diff options
author | Dries Buytaert <dries@buytaert.net> | 2005-01-15 08:01:09 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2005-01-15 08:01:09 +0000 |
commit | 816dc903dbd6c56a46bc9ec5b2e1459c6eb8b241 (patch) | |
tree | fe9074b217b8f3dba0b219003cbae75fe488efe2 | |
parent | beada9364d728f9b9f06f04085b723d833d45706 (diff) | |
download | brdo-816dc903dbd6c56a46bc9ec5b2e1459c6eb8b241.tar.gz brdo-816dc903dbd6c56a46bc9ec5b2e1459c6eb8b241.tar.bz2 |
- Patch #15264 by Ber et al.: improved the story module's help text.
-rw-r--r-- | modules/story.module | 12 | ||||
-rw-r--r-- | modules/story/story.module | 12 |
2 files changed, 6 insertions, 18 deletions
diff --git a/modules/story.module b/modules/story.module index f9fb59180..0a6dedf2b 100644 --- a/modules/story.module +++ b/modules/story.module @@ -14,19 +14,13 @@ function story_help($section) { case 'admin/modules#description': return t('Enables users to submit stories, articles or similar content.'); case 'admin/settings/story': - return t("<p>Stories are like newspaper articles. They tend to follow a publishing flow of <strong>submit -> moderate -> post to the main page -> comments</strong>. Below you may fix a minimum word count for stories and also write some submission or content guidelines for users wanting to post a story.</p>"); + 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(" - <p>The story module lets your users submit articles for consideration by the rest of the community, who can vote on them if moderation is enabled. Stories usually follow a publishing flow of <strong>submit -> moderate -> post to the main page -> comments</strong>. Administrators are able to shortcut this flow as desired.</p> - In <a href=\"%story-config\">administer » settings » story</a> you can set up an introductory text for story authors, and a floor on the number of words which may be included in a story. This is designed to help discourage the submission of trivially short stories.</p> - <h3>User access permissions for stories</h3> - <p><strong>create stories:</strong> Allows a role to create stories. They cannot edit or delete stories, even if they are the authors. You must enable this permission to in order for a role to create a story.</p> - <p><strong>edit own stories:</strong> Allows a role to add/edit stories if they own the story. Use this permission if you want users to be able to edit and maintain their own stories.</p> - ", array('%story-config' => url('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. 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"); case 'node/add/story': return variable_get('story_help', ''); case 'node/add#story': - return t('A story is similar to an article and usually gets promoted to the front page. If you want to post news items, articles or maintain a group blog, use stories.'); + 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.'); } } diff --git a/modules/story/story.module b/modules/story/story.module index f9fb59180..0a6dedf2b 100644 --- a/modules/story/story.module +++ b/modules/story/story.module @@ -14,19 +14,13 @@ function story_help($section) { case 'admin/modules#description': return t('Enables users to submit stories, articles or similar content.'); case 'admin/settings/story': - return t("<p>Stories are like newspaper articles. They tend to follow a publishing flow of <strong>submit -> moderate -> post to the main page -> comments</strong>. Below you may fix a minimum word count for stories and also write some submission or content guidelines for users wanting to post a story.</p>"); + 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(" - <p>The story module lets your users submit articles for consideration by the rest of the community, who can vote on them if moderation is enabled. Stories usually follow a publishing flow of <strong>submit -> moderate -> post to the main page -> comments</strong>. Administrators are able to shortcut this flow as desired.</p> - In <a href=\"%story-config\">administer » settings » story</a> you can set up an introductory text for story authors, and a floor on the number of words which may be included in a story. This is designed to help discourage the submission of trivially short stories.</p> - <h3>User access permissions for stories</h3> - <p><strong>create stories:</strong> Allows a role to create stories. They cannot edit or delete stories, even if they are the authors. You must enable this permission to in order for a role to create a story.</p> - <p><strong>edit own stories:</strong> Allows a role to add/edit stories if they own the story. Use this permission if you want users to be able to edit and maintain their own stories.</p> - ", array('%story-config' => url('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. 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"); case 'node/add/story': return variable_get('story_help', ''); case 'node/add#story': - return t('A story is similar to an article and usually gets promoted to the front page. If you want to post news items, articles or maintain a group blog, use stories.'); + 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.'); } } |