diff --git a/core/modules/update/src/Form/UpdateManagerInstall.php b/core/modules/update/src/Form/UpdateManagerInstall.php
index 3bc2c78..6f60fb1 100644
--- a/core/modules/update/src/Form/UpdateManagerInstall.php
+++ b/core/modules/update/src/Form/UpdateManagerInstall.php
@@ -81,19 +81,18 @@ public function buildForm(array $form, FormStateInterface $form_state) {
 
     $form['help_text'] = array(
       '#prefix' => '<p>',
-      '#markup' => $this->t('You can find <a href=":module_url">modules</a> and <a href=":theme_url">themes</a> on <a href=":drupal_org_url">drupal.org</a>. The following file extensions are supported: %extensions.', array(
+      '#markup' => $this->t('Go to <a href=":drupal_org_url">drupal.org</a> to get <a href=":module_url">modules</a> and <a href=":theme_url">themes</a>.', array(
+        ':drupal_org_url' => 'https://www.drupal.org',
         ':module_url' => 'https://www.drupal.org/project/modules',
         ':theme_url' => 'https://www.drupal.org/project/themes',
-        ':drupal_org_url' => 'https://www.drupal.org',
-        '%extensions' => archiver_get_extensions(),
       )),
       '#suffix' => '</p>',
     );
 
     $form['project_url'] = array(
       '#type' => 'url',
-      '#title' => $this->t('Install from a URL'),
-      '#description' => $this->t('For example: %url', array('%url' => 'http://ftp.drupal.org/files/projects/name.tar.gz')),
+      '#title' => $this->t('Import'),
+      '#description' => $this->t('Paste the download link from the project page. For example: %url', array('%url' => 'http://ftp.drupal.org/files/projects/name.tar.gz')),
     );
 
     $form['information'] = array(
@@ -104,15 +103,15 @@ public function buildForm(array $form, FormStateInterface $form_state) {
 
     $form['project_upload'] = array(
       '#type' => 'file',
-      '#title' => $this->t('Upload a module or theme archive to install'),
-      '#description' => $this->t('For example: %filename from your local computer', array('%filename' => 'name.tar.gz')),
+      '#title' => $this->t('Upload'),
+      '#description' => $this->t("If you download a zip or tar.gz to your computer click 'choose file' to upload it."),
     );
 
     $form['actions'] = array('#type' => 'actions');
     $form['actions']['submit'] = array(
       '#type' => 'submit',
       '#button_type' => 'primary',
-      '#value' => $this->t('Install'),
+      '#value' => $this->t('Import or upload'),
     );
 
     return $form;
diff --git a/core/modules/update/update.manager.inc b/core/modules/update/update.manager.inc
index f9c7c5f..8cdcebc 100644
--- a/core/modules/update/update.manager.inc
+++ b/core/modules/update/update.manager.inc
@@ -124,8 +124,8 @@ function _update_manager_check_backends(&$form, $operation) {
   else {
     $form['available_backends']['#markup'] = \Drupal::translation()->formatPlural(
       count($available_backends),
-      'Installing modules and themes requires <strong>@backends access</strong> to your server. See the <a href=":handbook_url">handbook</a> for other installation methods.',
-      'Installing modules and themes requires access to your server via one of the following methods: <strong>@backends</strong>. See the <a href=":handbook_url">handbook</a> for other installation methods.',
+      'Getting new modules and themes requires <strong>@backends access</strong> to your server. See the <a href=":handbook_url">handbook</a> for other installation methods.',
+      'Getting new modules and themes requires access to your server via one of the following methods: <strong>@backends</strong>. See the <a href=":handbook_url">handbook</a> for other installation methods.',
       array(
         '@backends' => implode(', ', $backend_names),
         ':handbook_url' => 'https://www.drupal.org/getting-started/install-contrib',
diff --git a/core/modules/update/update.routing.yml b/core/modules/update/update.routing.yml
index d5b79ea..121ca5a 100644
--- a/core/modules/update/update.routing.yml
+++ b/core/modules/update/update.routing.yml
@@ -45,7 +45,7 @@ update.module_install:
   path: '/admin/modules/install'
   defaults:
     _form: '\Drupal\update\Form\UpdateManagerInstall'
-    _title: 'Install new module'
+    _title: 'Get new modules'
   requirements:
     _permission: 'administer software updates'
     _access_update_manager: 'TRUE'
