summaryrefslogtreecommitdiff
path: root/modules/tracker
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/tracker
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/tracker')
-rw-r--r--modules/tracker/tracker.module10
1 files changed, 5 insertions, 5 deletions
diff --git a/modules/tracker/tracker.module b/modules/tracker/tracker.module
index 410b7cbd0..813b8c745 100644
--- a/modules/tracker/tracker.module
+++ b/modules/tracker/tracker.module
@@ -34,14 +34,14 @@ function tracker_menu($may_cache) {
$items = array();
if ($may_cache) {
- $items[] = array('path' => 'tracker', 'title' => t('recent posts'),
+ $items[] = array('path' => 'tracker', 'title' => t('Recent posts'),
'callback' => 'tracker_page', 'access' => user_access('access content'),
'weight' => 1);
if ($user->uid) {
- $items[] = array('path' => 'tracker/all', 'title' => t('all recent posts'),
+ $items[] = array('path' => 'tracker/all', 'title' => t('All recent posts'),
'type' => MENU_DEFAULT_LOCAL_TASK);
- $items[] = array('path' => 'tracker/'. $user->uid, 'title' => t('my recent posts'),
+ $items[] = array('path' => 'tracker/'. $user->uid, 'title' => t('My recent posts'),
'type' => MENU_LOCAL_TASK);
}
}
@@ -51,10 +51,10 @@ function tracker_menu($may_cache) {
drupal_add_css(drupal_get_path('module', 'tracker') .'/tracker.css');
if (arg(0) == 'user' && is_numeric(arg(1))) {
- $items[] = array('path' => 'user/'. arg(1) .'/track', 'title' => t('track'),
+ $items[] = array('path' => 'user/'. arg(1) .'/track', 'title' => t('Track'),
'callback' => 'tracker_track_user', 'access' => user_access('access content'),
'type' => MENU_IS_LOCAL_TASK);
- $items[] = array('path' => 'user/'. arg(1) .'/track/posts', 'title' => t('track posts'),
+ $items[] = array('path' => 'user/'. arg(1) .'/track/posts', 'title' => t('Track posts'),
'type' => MENU_DEFAULT_LOCAL_TASK);
}
}