diff --git a/core/modules/update/config/schema/update.schema.yml b/core/modules/update/config/schema/update.schema.yml
index b827c56..e9da926 100644
--- a/core/modules/update/config/schema/update.schema.yml
+++ b/core/modules/update/config/schema/update.schema.yml
@@ -10,7 +10,7 @@ update.settings:
       mapping:
         disabled_extensions:
           type: boolean
-          label: 'Check for updates of disabled modules and themes'
+          label: 'Check for updates of uninstalled modules and themes'
         interval_days:
           type: integer
           label: 'Days since last check'
diff --git a/core/modules/update/src/Tests/UpdateContribTest.php b/core/modules/update/src/Tests/UpdateContribTest.php
index 8197944..95a378c 100644
--- a/core/modules/update/src/Tests/UpdateContribTest.php
+++ b/core/modules/update/src/Tests/UpdateContribTest.php
@@ -257,12 +257,12 @@ function testUpdateShowDisabledThemes() {
       // themes.
       $this->assertNoText(t('Themes'));
       if ($check_disabled) {
-        $this->assertText(t('Disabled themes'));
+        $this->assertText(t('Uninstalled themes'));
         $this->assertRaw($base_theme_project_link, 'Link to the Update test base theme project appears.');
         $this->assertRaw($sub_theme_project_link, 'Link to the Update test subtheme project appears.');
       }
       else {
-        $this->assertNoText(t('Disabled themes'));
+        $this->assertNoText(t('Uninstalled themes'));
         $this->assertNoRaw($base_theme_project_link, 'Link to the Update test base theme project does not appear.');
         $this->assertNoRaw($sub_theme_project_link, 'Link to the Update test subtheme project does not appear.');
       }
diff --git a/core/modules/update/src/UpdateSettingsForm.php b/core/modules/update/src/UpdateSettingsForm.php
index 7b29880..9c40e73 100644
--- a/core/modules/update/src/UpdateSettingsForm.php
+++ b/core/modules/update/src/UpdateSettingsForm.php
@@ -77,7 +77,7 @@ public function buildForm(array $form, FormStateInterface $form_state) {
 
     $form['update_check_disabled'] = array(
       '#type' => 'checkbox',
-      '#title' => t('Check for updates of disabled modules and themes'),
+      '#title' => t('Check for updates of uninstalled modules and themes'),
       '#default_value' => $config->get('check.disabled_extensions'),
     );
 
diff --git a/core/modules/update/templates/update-project-status.html.twig b/core/modules/update/templates/update-project-status.html.twig
index b00e0b2..e67f1a1 100644
--- a/core/modules/update/templates/update-project-status.html.twig
+++ b/core/modules/update/templates/update-project-status.html.twig
@@ -96,7 +96,7 @@
       <li>
         {% set disabled = disabled|join(', ') %}
         {% trans %}
-          Disabled: {{ disabled|placeholder }}
+          Uninstalled: {{ disabled|placeholder }}
         {% endtrans %}
       </li>
     </ul>
diff --git a/core/modules/update/update.report.inc b/core/modules/update/update.report.inc
index dd2494f..efa2fc9 100644
--- a/core/modules/update/update.report.inc
+++ b/core/modules/update/update.report.inc
@@ -94,8 +94,8 @@ function template_preprocess_update_report(&$variables) {
     'core' => t('Drupal core'),
     'module' => t('Modules'),
     'theme' => t('Themes'),
-    'module-disabled' => t('Disabled modules'),
-    'theme-disabled' => t('Disabled themes'),
+    'module-disabled' => t('Uninstalled modules'),
+    'theme-disabled' => t('Uninstalled themes'),
   );
 
   $variables['project_types'] = array();
