diff --git a/core/modules/history/history.module b/core/modules/history/history.module index 111f644..3b9b1a8 100644 --- a/core/modules/history/history.module +++ b/core/modules/history/history.module @@ -26,7 +26,7 @@ function history_help($path, $arg) { switch ($path) { case 'admin/help#history': $output = '

' . t('About') . '

'; - $output .= '

' . t('The History module keeps track of which content a user has read. Its data is available through the Views module. The History module marks content as new or updated depending on the last time the user viewed that content. It also provides a filter to Views to show new or updated content. History records older than one month will be removed during cron. This means that content older than one month will always be considered read. The module does not provide a user interface. For more information, see the online documentation for the History module.', array('!views-help' => \Drupal::url('help.page', array ('name' => 'views')), '!url' => 'https://drupal.org/documentation/modules/history')).'

'; + $output .= '

' . t('The History module keeps track of which content a user has read. Its data is available through the Views module. The History module marks content as new or updated depending on the last time the user viewed that content. It also provides a filter to Views to show new or updated content. History records older than one month will be removed during cron. This means that content older than one month will always be considered read. The module does not provide a user interface. For more information, see the online documentation for the History module.', array('!views-help' => \Drupal::url('help.page', array ('name' => 'views')), '!url' => 'https://drupal.org/documentation/modules/history')).'

'; return $output; } } diff --git a/core/modules/tracker/tracker.module b/core/modules/tracker/tracker.module index 87fcd0c..b17b11f 100644 --- a/core/modules/tracker/tracker.module +++ b/core/modules/tracker/tracker.module @@ -16,13 +16,13 @@ function tracker_help($path, $arg) { switch ($path) { case 'admin/help#tracker': $output = '

' . t('About') . '

'; - $output .= '

' . t('The Tracker module displays the most recently added and updated content on your site, and allows you to follow new content created by each user. This module has no configuration options. For more information, see the online handbook entry for Tracker module.', array('!tracker' => 'http://drupal.org/documentation/modules/tracker')) . '

'; + $output .= '

' . t('The Tracker module displays the most recently added and updated content on your site, and allows you to follow new content created by each user. This module has no configuration options. For more information, see the online handbook entry for Tracker module.', array('@tracker' => 'http://drupal.org/documentation/modules/tracker')) . '

'; $output .= '

' . t('Uses') . '

'; $output .= '
'; $output .= '
' . t('Tracker navigation') . '
'; - $output .= '
' . t('The Tracker module adds a new menu item to the Tools menu, called Recent content. You can configure menu items via the Menus administration page.', array('!menus' => url('admin/structure/menu'))) . '
'; + $output .= '
' . t('The Tracker module adds a new menu item to the Tools menu, called Recent content. You can configure menu items via the Menus administration page.', array('@menus' => url('admin/structure/menu'))) . '
'; $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("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 .= '
';