diff --git a/INSTALL.txt b/INSTALL.txt
index 3630823..3bfc7ac 100644
--- INSTALL.txt
+++ INSTALL.txt
@@ -72,12 +72,23 @@ INSTALLATION
 
      mv drupal-x.x/* drupal-x.x/.htaccess /var/www/html
 
-   If you would like to have the default English interface translated to a
-   different language, we have good news. You can install and use Drupal in
-   other languages from the start. Check whether a released package of the
-   language desired is available for this Drupal version at
-   http://drupal.org/project/translations and download the package. Extract
-   the contents to the same directory where you extracted Drupal into.
+   Optionally, to install Drupal in your language:
+
+   - Download a translation file for the correct version of Drupal you are
+     installing from the translation server:
+     http://localize.drupal.org/download
+
+   - Rename the downloaded file to your language's ISO code (e.g., de.po or
+     fr.po) and place it into the directory /translations right below
+     the installation profile's directory that you want to use for your
+     installation (usually "standard").
+
+       /profiles/standard/translations/
+
+   - Reload the language selection page after adding translations.
+
+   For detailed instructions, visit http://drupal.org/localize. You may also
+   install Drupal in English and install additional languages later.
 
 2. IF NECESSARY, CREATE THE CONFIGURATION FILE AND GRANT WRITE PERMISSIONS

diff --git a/includes/install.core.inc b/includes/install.core.inc
index d9d454f..8c260a0 100644
--- includes/install.core.inc
+++ includes/install.core.inc
@@ -1203,16 +1203,29 @@ function install_select_locale(&$install_state) {
     // the user that the installer can be localized. Otherwise we assume the
     // user knows what he is doing.
     if (count($locales) == 1) {
-      if ($profilename == 'standard' && $install_state['interactive']) {
+      if ($install_state['interactive']) {
         drupal_set_title(st('Choose language'));
         if (!empty($install_state['parameters']['localize'])) {
-          $output = '<p>' . 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:') . '</p>';
-          $output .= '<ul><li>' . st('Determine if <a href="@translations" target="_blank">a translation of this Drupal version</a> is available in your language of choice. A translation is provided via a translation package; each translation package enables the display of a specific version of Drupal in a specific language. Not all languages are available for every version of Drupal.', array('@translations' => 'http://drupal.org/project/translations')) . '</li>';
-          $output .= '<li>' . st('If an alternative translation package of your choice is available, download and extract its contents to your Drupal root directory.') . '</li>';
-          $output .= '<li>' . st('Return to choose 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.') . '</li>';
-          $output .= '</ul><p>' . 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.') . '</p>';
+          $output = '<p>' . st('Follow these steps to translate Drupal into your language:') . '</p>';
+          $output .= '<ol><li>' . st('Download a translation from the <a href="@localize" target="_blank">translation server</a>.', array(
+            '@localize' => 'http://localize.drupal.org/download',
+          )) . '</li>';
+          $output .= '<li>' . st('Rename the downloaded file to your language\'s <a href="@iso-url" target="_blank">ISO code</a> (e.g., <code>de.po</code> or <code>fr.po</code>) and place it into the following directory:
+<pre>
+@profile-path/
+</pre>
+For detailed instructions, visit the <a href="@handbook-url" target="_blank">drupal.org handbook page</a>.', array(
+            '@profile-path' => "/profiles/$profilename/translations",
+            '@iso-url' => 'http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#Officially_assigned_code_elements',
+            '@handbook-url' => 'http://drupal.org/localize',
+          )) . '</li>';
+          $output .= '<li>' . st('Reload the language selection page after adding translations.') . '</li>';
+          $output .= '</ol>';
           $output .= '<p>' . st('How should the installation continue?') . '</p>';
-          $output .= '<ul><li><a href="install.php?profile=' . $profilename . '&amp;locale=en">' . st('Continue installation in English') . '</a></li><li><a href="install.php?profile=' . $profilename . '">' . st('Return to choose a language') . '</a></li></ul>';
+          $output .= '<ul>';
+          $output .= '<li><a href="install.php?profile=' . $profilename . '">' . st('Reload the language selection page to choose a language') . '</a></li>';
+          $output .= '<li><a href="install.php?profile=' . $profilename . '&amp;locale=en">' . st('Continue installation in English and install additional languages later') . '</a></li>';
+          $output .= '</ul>';
         }
         else {
           include_once DRUPAL_ROOT . '/includes/form.inc';
diff --git a/profiles/minimal/translations/README.txt b/profiles/minimal/translations/README.txt
new file mode 100644
index 0000000..72d1e60
--- /dev/null
+++ profiles/minimal/translations/README.txt
@@ -0,0 +1,4 @@
+// $Id$
+
+This directory should be used to place downloaded translations
+for installing Drupal core.
diff --git a/profiles/standard/translations/README.txt b/profiles/standard/translations/README.txt
new file mode 100644
index 0000000..72d1e60
--- /dev/null
+++ profiles/standard/translations/README.txt
@@ -0,0 +1,4 @@
+// $Id$
+
+This directory should be used to place downloaded translations
+for installing Drupal core.
diff --git a/themes/seven/style.css b/themes/seven/style.css
index d6d89aa..d9e4296 100644
--- themes/seven/style.css
+++ themes/seven/style.css
@@ -139,6 +139,10 @@ pre,
 kbd {
   font-size: 1.231em;
 }
+pre {
+  margin: 0.5em 0;
+  white-space: pre-wrap;
+}
 
 /**
  * Skip link.
