summaryrefslogtreecommitdiff
path: root/modules/statistics
diff options
context:
space:
mode:
authorSteven Wittens <steven@10.no-reply.drupal.org>2006-10-22 08:28:47 +0000
committerSteven Wittens <steven@10.no-reply.drupal.org>2006-10-22 08:28:47 +0000
commit36d44fbfb07e4682f219368e1424c58fc61315a1 (patch)
treed6a5363c6ec34a5b81aac6fee283ee7479d45ea4 /modules/statistics
parentc93c0fc7000f5cbb78ac2715ace58c28b789dc81 (diff)
downloadbrdo-36d44fbfb07e4682f219368e1424c58fc61315a1.tar.gz
brdo-36d44fbfb07e4682f219368e1424c58fc61315a1.tar.bz2
#84146: Use 'Sentence capitalization' for menu items, page titles, form items, etc
Diffstat (limited to 'modules/statistics')
-rw-r--r--modules/statistics/statistics.module16
1 files changed, 8 insertions, 8 deletions
diff --git a/modules/statistics/statistics.module b/modules/statistics/statistics.module
index 6ae63436d..b1c1f9635 100644
--- a/modules/statistics/statistics.module
+++ b/modules/statistics/statistics.module
@@ -114,40 +114,40 @@ function statistics_menu($may_cache) {
if ($may_cache) {
$items[] = array(
'path' => 'admin/logs/hits',
- 'title' => t('recent hits'),
+ 'title' => t('Recent hits'),
'description' => t('View pages that have recently been visited.'),
'callback' => 'statistics_recent_hits',
'access' => $access);
$items[] = array(
'path' => 'admin/logs/pages',
- 'title' => t('top pages'),
+ 'title' => t('Top pages'),
'description' => t('View pages that have been hit frequently.'),
'callback' => 'statistics_top_pages',
'access' => $access,
'weight' => 1);
$items[] = array(
'path' => 'admin/logs/visitors',
- 'title' => t('top visitors'),
+ 'title' => t('Top visitors'),
'description' => t('View visitors that hit many pages.'),
'callback' => 'statistics_top_visitors',
'access' => $access,
'weight' => 2);
$items[] = array(
'path' => 'admin/logs/referrers',
- 'title' => t('top referrers'),
+ 'title' => t('Top referrers'),
'description' => t('View top referrers.'),
'callback' => 'statistics_top_referrers',
'access' => $access);
$items[] = array(
'path' => 'admin/logs/access',
- 'title' => t('details'),
+ 'title' => t('Details'),
'description' => t('View access log.'),
'callback' => 'statistics_access_log',
'access' => $access,
'type' => MENU_CALLBACK);
$items[] = array(
'path' => 'admin/logs/settings',
- 'title' => t('access log settings'),
+ 'title' => t('Access log settings'),
'description' => t('Control details about what and how your site logs.'),
'callback' => 'drupal_get_form',
'callback arguments' => array('statistics_access_logging_settings'),
@@ -159,7 +159,7 @@ function statistics_menu($may_cache) {
if (arg(0) == 'user' && is_numeric(arg(1)) && variable_get('statistics_enable_access_log', 0)) {
$items[] = array(
'path' => 'user/'. arg(1) .'/track/navigation',
- 'title' => t('track page visits'),
+ 'title' => t('Track page visits'),
'callback' => 'statistics_user_tracker',
'access' => $access,
'type' => MENU_LOCAL_TASK,
@@ -168,7 +168,7 @@ function statistics_menu($may_cache) {
if (arg(0) == 'node' && is_numeric(arg(1)) && variable_get('statistics_enable_access_log', 0)) {
$items[] = array(
'path' => 'node/'. arg(1) .'/track',
- 'title' => t('track'),
+ 'title' => t('Track'),
'callback' => 'statistics_node_tracker',
'access' => $access,
'type' => MENU_LOCAL_TASK,