diff --git a/core/modules/update/update.local_tasks.yml b/core/modules/update/update.local_tasks.yml
index e817f3e..151439b 100644
--- a/core/modules/update/update.local_tasks.yml
+++ b/core/modules/update/update.local_tasks.yml
@@ -2,25 +2,26 @@ update.status:
   route_name: update.status
   base_route: system.admin_reports
   title: List
+  weight: 5
+update.report_update:
+  route_name: update.report_update
+  base_route: system.admin_reports
+  title: Update
+  weight: 10
 update.settings:
   route_name: update.settings
-  parent_id: update.status
+  base_route: system.admin_reports
   title: Settings
   weight: 50
-update.report_install:
-  route_name: update.report_install
-  base_route: system.admin_reports
-  title: Update
-  weight: 10
 
-update.module_install:
-  route_name: update.module_install
+update.module_update:
+  route_name: update.module_update
   base_route: system.modules_list
   title: Update
   weight: 10
 
-update.theme_install:
-  route_name: update.theme_install
+update.theme_update:
+  route_name: update.theme_update
   base_route: system.themes_page
   title: Update
   weight: 10
diff --git a/core/modules/update/update.routing.yml b/core/modules/update/update.routing.yml
index 2ed1b68..b338a4f 100644
--- a/core/modules/update/update.routing.yml
+++ b/core/modules/update/update.routing.yml
@@ -2,7 +2,7 @@ update.settings:
   path: '/admin/reports/updates/settings'
   defaults:
     _form: '\Drupal\update\UpdateSettingsForm'
-    _title: 'Settings'
+    _title: 'Available updates'
   requirements:
     _permission: 'administer site configuration'
 
@@ -37,7 +37,7 @@ update.report_update:
   path: '/admin/reports/updates/update'
   defaults:
     _content: '\Drupal\update\Form\UpdateForm::reportUpdate'
-    _title: 'Update'
+    _title: 'Available updates'
   options:
     _access_mode: 'ALL'
   requirements:
@@ -59,7 +59,7 @@ update.module_update:
   path: '/admin/modules/update'
   defaults:
     _content: '\Drupal\update\Form\UpdateForm::moduleUpdate'
-    _title: 'Update'
+    _title: 'Modules'
   options:
     _access_mode: 'ALL'
   requirements:
@@ -81,7 +81,7 @@ update.theme_update:
   path: '/admin/theme/update'
   defaults:
     _content: '\Drupal\update\Form\UpdateForm::themeUpdate'
-    _title: 'Update'
+    _title: 'Appearance'
   options:
     _access_mode: 'ALL'
   requirements:
