From b5bf8a8f476fe4214478fec9250e651164b0e76f Mon Sep 17 00:00:00 2001 From: Neil Drumm Date: Sun, 26 Nov 2006 02:20:01 +0000 Subject: #97824 by Gurpartap. Move enclosing elements outside of their t(). --- modules/statistics/statistics.module | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'modules/statistics') diff --git a/modules/statistics/statistics.module b/modules/statistics/statistics.module index cce2eaf5f..6ac6ff5fd 100644 --- a/modules/statistics/statistics.module +++ b/modules/statistics/statistics.module @@ -34,13 +34,13 @@ function statistics_help($section) { $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/logs/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/logs/hits'))); + 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/logs/hits'))) .'

'; case 'admin/logs/hits': - return t('

This page shows you the most recent hits.

'); + return '

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

'; case 'admin/logs/referrers': - return t('

This page shows you all external referrers. These are links pointing to your web site from outside your web site.

'); + return '

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

'; case 'admin/logs/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. The most common use for this is to block bots/web crawlers that are consuming too many resources.") .'

'; } } -- cgit v1.2.3