diff --git modules/update/update.manager.inc modules/update/update.manager.inc index 3556180..b3a8ba0 100644 --- modules/update/update.manager.inc +++ modules/update/update.manager.inc @@ -489,14 +489,14 @@ function update_manager_install_form($form, &$form_state, $context) { } $form['help_text'] = array( '#prefix' => '

', - '#markup' => t('To install a new module or theme, either paste the URL of an archive file you wish to install, or upload the archive file that you have downloaded. You can find modules and themes at http://drupal.org. The following archive extensions are supported: %extensions', array('@module_url' => 'http://drupal.org/project/modules', '@theme_url' => 'http://drupal.org/project/themes', '@drupal_org_url' => 'http://drupal.org', '%extensions' => implode(', ', $extensions))), + '#markup' => t('To install a new module or theme, either enter the URL of an archive file you wish to install, or upload the archive file that you have downloaded. You can find modules and themes at http://drupal.org. The following archive extensions are supported: %extensions', array('@module_url' => 'http://drupal.org/project/modules', '@theme_url' => 'http://drupal.org/project/themes', '@drupal_org_url' => 'http://drupal.org', '%extensions' => implode(', ', $extensions))), '#suffix' => '

', ); $form['project_url'] = array( '#type' => 'textfield', - '#title' => t('URL'), - '#description' => t('Paste the URL to a Drupal module or theme archive to install it (e.g http://ftp.drupal.org/files/projects/projectname.tar.gz).'), + '#title' => t('Install from a URL'), + '#description' => t('For example: http://ftp.drupal.org/files/projects/projectname.tar.gz'), ); $form['information'] = array( @@ -507,8 +507,8 @@ function update_manager_install_form($form, &$form_state, $context) { $form['project_upload'] = array( '#type' => 'file', - '#title' => t('Upload a module or theme'), - '#description' => t('Upload a Drupal module or theme archive to install it.'), + '#title' => t('Install from a file'), + '#description' => t('Upload a module or theme archive (for example: projectname.tar.gz).'), ); $form['submit'] = array(