diff --git a/core/modules/tracker/tracker.module b/core/modules/tracker/tracker.module
index 878a755..b861acc 100644
--- a/core/modules/tracker/tracker.module
+++ b/core/modules/tracker/tracker.module
@@ -24,7 +24,7 @@ function tracker_help($path, $arg) {
       $output .= '<dt>' . t('Tracking new and updated site content') . '</dt>';
       $output .= '<dd>' . t("The <a href='@recent'>Recent content</a> page shows new and updated content in reverse chronological order, listing the content type, title, author's name, number of comments, and time of last update. Content is considered updated when changes occur in the text, or when new comments are added. The <em>My recent content</em> tab limits the list to the currently logged-in user.", array('@recent' => url('tracker'))) . '</dd>';
       $output .= '<dt>' . t('Tracking user-specific content') . '</dt>';
-      $output .= '<dd>' . t("To follow a specific user's new and updated content, select the <em>Track</em> tab from the user's profile page.") . '</dd>';
+      $output .= '<dd>' . t("To follow a specific user's new and updated content, select the <em>Activity</em> tab from the user's profile page.") . '</dd>';
       $output .= '</dl>';
       return $output;
   }
diff --git a/core/modules/tracker/tracker.routing.yml b/core/modules/tracker/tracker.routing.yml
index 4de8d8f..c1788f8 100644
--- a/core/modules/tracker/tracker.routing.yml
+++ b/core/modules/tracker/tracker.routing.yml
@@ -1,5 +1,5 @@
 tracker.page:
-  path: '/tracker'
+  path: '/activity'
   defaults:
     _content: '\Drupal\tracker\Controller\TrackerPage::getContent'
     _title: 'Recent content'
@@ -7,7 +7,7 @@ tracker.page:
     _permission: 'access content'
 
 tracker.users_recent_content:
-  path: '/tracker/{user}'
+  path: '/activity/{user}'
   defaults:
     _content: '\Drupal\tracker\Controller\TrackerUserRecent::getContent'
     _title: 'My recent content'
@@ -18,7 +18,7 @@ tracker.users_recent_content:
     _access_tracker_own_information: 'TRUE'
 
 tracker.user_tab:
-  path: '/user/{user}/track'
+  path: '/user/{user}/activity'
   defaults:
     _content: '\Drupal\tracker\Controller\TrackerUserTab::getContent'
     _title_callback: '\Drupal\tracker\Controller\TrackerUserTab::getTitle'
