Index: modules/tracker/tracker.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/tracker/tracker.module,v
retrieving revision 1.171
diff -u -r1.171 tracker.module
--- modules/tracker/tracker.module	4 Dec 2009 16:49:47 -0000	1.171
+++ modules/tracker/tracker.module	6 Mar 2010 13:19:15 -0000
@@ -52,8 +52,8 @@
     'file' => 'tracker.pages.inc',
   );
 
-  $items['user/%user/track'] = array(
-    'title' => 'Track',
+  $items['user/%uid/activity'] = array(
+    'title' => 'My activity',
     'page callback' => 'tracker_page',
     'page arguments' => array(1, TRUE),
     'access callback' => '_tracker_user_access',
Index: modules/tracker/tracker.test
===================================================================
RCS file: /cvs/drupal/drupal/modules/tracker/tracker.test,v
retrieving revision 1.18
diff -u -r1.18 tracker.test
--- modules/tracker/tracker.test	9 Jan 2010 21:54:01 -0000	1.18
+++ modules/tracker/tracker.test	6 Mar 2010 13:19:15 -0000
@@ -78,7 +78,7 @@
     );
     $this->drupalPost('comment/reply/' . $other_published_my_comment->nid, $comment, t('Save'));
 
-    $this->drupalGet('user/' . $this->user->uid . '/track');
+    $this->drupalGet('user/' . $this->user->uid . '/activity');
     $this->assertNoText($unpublished->title, t("Unpublished nodes do not show up in the users's tracker listing."));
     $this->assertText($my_published->title, t("Published nodes show up in the user's tracker listing."));
     $this->assertNoText($other_published_no_comment->title, t("Other user's nodes do not show up in the user's tracker listing."));
