Index: install.php =================================================================== RCS file: /cvs/drupal/drupal/install.php,v retrieving revision 1.177 diff -u -p -r1.177 install.php --- install.php 6 Jun 2009 16:05:26 -0000 1.177 +++ install.php 7 Jun 2009 20:39:40 -0000 @@ -135,7 +135,7 @@ function install_main() { install_task_list('requirements'); drupal_set_title(st('Requirements problem')); $status_report = theme('status_report', $requirements); - $status_report .= st('Please check the error messages and try again.', array('!url' => request_uri())); + $status_report .= st('Please fix the issues listed above and refresh your browser window. Additional information about installing @drupal is available in the file INSTALL.txt.', array('!url' => request_uri(), '@drupal' => drupal_install_profile_name(), '@install_txt' => base_path() . 'INSTALL.txt')); print theme('install_page', $status_report); exit; } @@ -916,9 +916,9 @@ function install_check_requirements($pro if (!$exists) { $requirements['settings file exists'] = array( 'title' => st('Settings file'), - 'value' => st('The settings file does not exist.'), + 'value' => st('The file settings.php does not exist.'), 'severity' => REQUIREMENT_ERROR, - 'description' => st('The @drupal installer requires that you create a settings file as part of the installation process. Copy the %default_file file to %file. More details about installing Drupal are available in INSTALL.txt.', array('@drupal' => drupal_install_profile_name(), '%file' => $file, '%default_file' => $conf_path . '/default.settings.php', '@install_txt' => base_path() . 'INSTALL.txt')), + 'description' => st('Please copy %default_file to %file. ', array('%file' => $file, '%default_file' => $conf_path . '/default.settings.php')), ); } else {