diff --git a/core/includes/install.core.inc b/core/includes/install.core.inc index 06be4eeccfb87745b9587dad9f9a9c828b08c57a..1e67d46e28c4123fc9b162ab9f28bd0bfd875e92 100644 --- a/core/includes/install.core.inc +++ b/core/includes/install.core.inc @@ -1319,7 +1319,7 @@ function install_select_language(&$install_state) { if (!empty($install_state['parameters']['translate'])) { $output = '

Follow these steps to translate Drupal into your language:

'; $output .= '
    '; - $output .= '
  1. Download a translation from the translation server.
  2. '; + $output .= '
  3. Download a translation from the translation server.
  4. '; $output .= '
  5. Place it into the following directory:
    ' . $directory . '
  6. '; $output .= '
'; $output .= '

For more information on installing Drupal in different languages, visit the drupal.org handbook page.

'; diff --git a/core/modules/locale/locale.module b/core/modules/locale/locale.module index 39febcaa8bb894d208299d99dda8582e6118723a..86689acc2f202931911ec7561916202d3c30a3fe 100644 --- a/core/modules/locale/locale.module +++ b/core/modules/locale/locale.module @@ -91,7 +91,7 @@ function locale_help($path, $arg) { return $output; case 'admin/config/regional/language': - return '

' . t('Interface text can be translated. Download contributed translations from Drupal.org.', array('@translations' => 'http://localize.drupal.org', '@translate' => url('admin/config/regional/translate'))) . '

'; + return '

' . t('Interface text can be translated. Download contributed translations from Drupal.org.', array('@translations' => 'http://localize.drupal.org/download', '@translate' => url('admin/config/regional/translate'))) . '

'; case 'admin/config/regional/translate': $output = '

' . t('This page allows a translator to search for specific translated and untranslated strings, and is used when creating or editing translations. (Note: For translation tasks involving many strings, it may be more convenient to export strings for offline editing in a desktop Gettext translation editor.) Searches may be limited to strings in a specific language.', array('@export' => url('admin/config/regional/translate/export'))) . '

';