? 43447-5.patch ? files ? statistics_help-2.patch ? modules/blog/.blog.module.swp ? sites/default/settings.php Index: modules/statistics/statistics.module =================================================================== RCS file: /cvs/drupal/drupal/modules/statistics/statistics.module,v retrieving revision 1.267 diff -u -p -r1.267 statistics.module --- modules/statistics/statistics.module 20 Oct 2007 21:57:50 -0000 1.267 +++ modules/statistics/statistics.module 27 Nov 2007 00:03:52 -0000 @@ -12,35 +12,28 @@ function statistics_help($path, $arg) { switch ($path) { case 'admin/help#statistics': - $output = '

'. t('The statistics module keeps track of numerous statistics of site usage. It counts how many times, and from where each of your posts is viewed. The statistics module can be used to learn many useful things about how users are interacting with each other and with your site.') .'

'; - $output .= t('

Statistics module features

- -'); - $output .= t('

Configuring the statistics module

- -'); + $output = '

'. t('The statistics module keeps track of numerous site usage statistics, including the number of times, and from where, each of your posts is viewed. These statistics are useful in determining how users are interacting with each other and with your site, and are required for the display of some Drupal blocks.') .'

'; + $output .= '

'. t('The statistics module provides:') .'

'; + $output .= ''; + $output .= '

'. t('Configuring the statistics module') .'

'; + $output .= ''; $output .= '

'. t('For more information please read the configuration and customization handbook Statistics page.', array('@statistics' => 'http://drupal.org/handbook/modules/statistics/')) .'

'; return $output; case 'admin/reports/settings': return '

'. t('Settings for the statistical information that Drupal will keep about the site. See site statistics for the actual information.', array('@statistics' => url('admin/reports/hits'))) .'

'; case 'admin/reports/hits': - return '

'. t('This page shows you the most recent hits.') .'

'; + return '

'. t('This page displays the site\'s most recent hits.') .'

'; case 'admin/reports/referrers': - return '

'. t('This page shows you all external referrers. These are links pointing to your website from outside your website.') .'

'; + return '

'. t('This page displays all external referrers, or external references to your website.') .'

'; case 'admin/reports/visitors': - return '

'. t("When you ban a visitor, you prevent the visitor's IP address from accessing your site. Unlike blocking a user, banning a visitor works even for anonymous users. The most common use for this is to block bots/web crawlers that are consuming too many resources.") .'

'; + return '

'. t("When you ban a visitor, you prevent the visitor's IP address from accessing your site. Unlike blocking a user, banning a visitor works even for anonymous users. This is most commonly used to block resource-intensive bots or web crawlers.") .'

'; } }