diff options
author | Dries Buytaert <dries@buytaert.net> | 2004-06-21 08:26:20 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2004-06-21 08:26:20 +0000 |
commit | ad3c6f345eff5d7e961f7d6258e61afb5ecce5cb (patch) | |
tree | bb42f56e40065267a0fc0de04b20d6601377507c /modules/aggregator/aggregator.module | |
parent | e30fdce6cbacd17133a91ac71992de86b2a5f99a (diff) | |
download | brdo-ad3c6f345eff5d7e961f7d6258e61afb5ecce5cb.tar.gz brdo-ad3c6f345eff5d7e961f7d6258e61afb5ecce5cb.tar.bz2 |
- Patch #8681 by asimmonds: more help text updates
Diffstat (limited to 'modules/aggregator/aggregator.module')
-rw-r--r-- | modules/aggregator/aggregator.module | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/aggregator/aggregator.module b/modules/aggregator/aggregator.module index b2cf93628..75ed25991 100644 --- a/modules/aggregator/aggregator.module +++ b/modules/aggregator/aggregator.module @@ -49,7 +49,7 @@ function aggregator_help($section) { <li>A description, the first few paragraphs or summary of the originating post (if any).</li> <li>The name of the source, which acts as a link to an individual feed page, listing information about that feed and incoming content for that feed only. This is not shown on feed pages.</li> </ul> - <p>Additionally, users with the administer news feeds permission will see a link to categorize the news items. Clicking this will add a right hand column to slect the categories which each news item is in.</p> + <p>Additionally, users with the administer news feeds permission will see a link to categorize the news items. Clicking this will add a right hand column to select the categories which each news item is in.</p> <h3>Technical details</h3> <p>Drupal automatically generates an OPML feed file that is available by selecting the XML icon on the News Sources page.</p> <p>When fetching feeds Drupal supports conditional GETs, this reduces the bandwidth usage for feeds that have not been updated since the last check.</p> @@ -550,7 +550,7 @@ function aggregator_form_category($edit = array()) { $form = form_textfield(t('Title'), 'title', $edit['title'], 50, 64); $form .= form_textarea(t('Description'), 'description', $edit['description'], 60, 5); - $form .= form_select(t('Latest items block'), 'block', $edit['block'], $block_items, t('If enabled, a block containing the latest items in this category will be availiable for placement on the <a href="%url">block configuration</a> page.', array('%url' => url('admin/block')))); + $form .= form_select(t('Latest items block'), 'block', $edit['block'], $block_items, t('If enabled, a block containing the latest items in this category will be available for placement on the <a href="%url">block configuration</a> page.', array('%url' => url('admin/block')))); $form .= form_submit(t('Submit')); if ($edit['cid']) { |