diff --git a/core/includes/install.core.inc b/core/includes/install.core.inc index 06be4eeccfb..1e67d46e28c 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 .= '' . $directory . '
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 39febcaa8bb..86689acc2f2 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'))) . '
';