diff --git a/core/modules/tracker/tracker.module b/core/modules/tracker/tracker.module index 89907b5..ad71a1f 100644 --- a/core/modules/tracker/tracker.module +++ b/core/modules/tracker/tracker.module @@ -20,7 +20,7 @@ function tracker_help($path, $arg) { $output .= '
' . t('Tracking new and updated site content') . '
'; $output .= '
' . t("The Recent content page shows new and updated content in reverse chronological order, listing the content type, title, author's name, number of comments, and time of last update. Content is considered updated when changes occur in the text, or when new comments are added. The My recent content tab limits the list to the currently logged-in user.", array('@recent' => url('tracker'))) . '
'; $output .= '
' . t('Tracking user-specific content') . '
'; - $output .= '
' . t("To follow a specific user's new and updated content, select the Track tab from the user's profile page.") . '
'; + $output .= '
' . t("To follow a specific user's new and updated content, select the Activity tab from the user's profile page.") . '
'; $output .= ''; return $output; } @@ -52,7 +52,7 @@ function tracker_menu() { ); $items['user/%user/track'] = array( - 'title' => 'Track', + 'title' => 'Activity', 'page callback' => 'tracker_page', 'page arguments' => array(1, TRUE), 'access callback' => '_tracker_user_access',