diff options
author | Gábor Hojtsy <gabor@hojtsy.hu> | 2007-12-13 09:34:40 +0000 |
---|---|---|
committer | Gábor Hojtsy <gabor@hojtsy.hu> | 2007-12-13 09:34:40 +0000 |
commit | c6d841c0963ff151232c2ae23b997a5b36c680eb (patch) | |
tree | 7c0b7779cb9919be9371533022c6ee658b464ffc /modules/tracker/tracker.module | |
parent | 2325fd5105462d8f3403c5aaf382d633f77cd373 (diff) | |
download | brdo-c6d841c0963ff151232c2ae23b997a5b36c680eb.tar.gz brdo-c6d841c0963ff151232c2ae23b997a5b36c680eb.tar.bz2 |
#197297 by DanW (as GHOP 17), and keith.smith: clean up lots of help texts, update to drag and drop functionality, drupal.module removal, etc
Diffstat (limited to 'modules/tracker/tracker.module')
-rw-r--r-- | modules/tracker/tracker.module | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/tracker/tracker.module b/modules/tracker/tracker.module index d81d39845..c5cbf1ad8 100644 --- a/modules/tracker/tracker.module +++ b/modules/tracker/tracker.module @@ -12,8 +12,8 @@ function tracker_help($path, $arg) { switch ($path) { case 'admin/help#tracker': - $output = '<p>'. t('The tracker module displays the most recently added or updated content to the website allowing users to see the most recent contributions. The tracker module provides user level tracking for those who like to follow the contributions of particular authors.') .'</p>'; - $output .= '<p>'. t('The "recent posts" page is available via a link in the navigation menu block and contains a reverse chronological list of new and recently-updated content. The table displays the content type, the title, the author\'s name, how many comments that item has received, and when it was last updated. Updates include any changes to the text, either by the original author or someone else, as well as any new comments added to an item. To use the tracker module to <em>watch</em> for a user\'s updated content, click on that user\'s profile, then the <em>track</em> tab.') .'</p>'; + $output = '<p>'. t('The tracker module displays the most recently added or updated content on your site, and provides user-level tracking to follow the contributions of particular authors.') .'</p>'; + $output .= '<p>'. t("The <em>Recent posts</em> page is available via a link in the navigation menu block and displays new and recently-updated content (including the content type, the title, the author's name, number of comments, and time of last update) in reverse chronological order. Posts are marked updated when changes occur in the text, or when new comments are added. To use the tracker module to follow a specific user's contributions, select the <em>Track</em> tab from the user's profile page.") .'</p>'; $output .= '<p>'. t('For more information please read the configuration and customization handbook <a href="@tracker">Tracker page</a>.', array('@tracker' => 'http://drupal.org/handbook/modules/tracker/')) .'</p>'; return $output; } |