Index: includes/install.core.inc =================================================================== RCS file: /cvs/drupal/drupal/includes/install.core.inc,v retrieving revision 1.28 diff -u -p -r1.28 install.core.inc --- includes/install.core.inc 1 Sep 2010 01:24:05 -0000 1.28 +++ includes/install.core.inc 13 Sep 2010 13:20:52 -0000 @@ -1206,13 +1206,12 @@ function install_select_locale(&$install if ($profilename == 'standard' && $install_state['interactive']) { drupal_set_title(st('Choose language')); if (!empty($install_state['parameters']['localize'])) { - $output = '

' . st('With the addition of an appropriate translation package, this installer is capable of proceeding in another language of your choice. To install and use Drupal in a language other than English:') . '

'; - $output .= '

' . st('Alternatively, to install and use Drupal in English, or to defer the selection of an alternative language until after installation, select the first link below.') . '

'; + $output = '

' . st('With the addition of an appropriate translation package, this installer is capable of proceeding in another language of your choice.') . '

'; + $output .= '

' . st('Visit the Drupal website to learn how to install Drupal in a language other than English.', array('@url' => 'http://drupal.org/localize')) . '

'; + $output .= '

' . st('When you have finished adding translation packages to your Drupal installation, return to choose a language using the second link below and select your desired language from the displayed list. Reloading the page allows the list to automatically adjust to the presence of new translation packages.') . '

'; + $output .= '

' . st('Alternatively, to install and use Drupal in English, or to defer the selection of an alternative language until after installation, select the first link below.') . '

'; $output .= '

' . st('How should the installation continue?') . '

'; - $output .= ''; + $output .= '

' . st('Continue installation in English') . '' . st('Return to choose a language') . '

'; } else { include_once DRUPAL_ROOT . '/includes/form.inc';