diff --git a/includes/locale.inc b/includes/locale.inc
index 8b9aa5c20fe229e7333723165d75bf19c82b7d65..be15f0caf33303562ec4b48121ece4ee879e6cb2 100644
--- a/includes/locale.inc
+++ b/includes/locale.inc
@@ -106,7 +106,6 @@ function _locale_admin_import_screen() {
   $form = form_file(t('Language file'), 'file', 50, t('A gettext Portable Object (.po) file.'));
   $form .= form_select(t('Import into'), 'langcode', '', $languages, t('Choose the language you want to add strings into. If you choose a language which is not yet set up, then it will be added.'));
   $form .= form_radios(t('Mode'), 'mode', 'overwrite', array("overwrite" => t('Strings in the uploaded file replace existing ones, new ones are added'), "keep" => t('Existing strings are kept, only new strings are added')));
-  $form .= '<p><strong>Note</strong>: Importing a translation file might take a while.</p>';
   $form .= form_submit(t('Import'));
   $output = form($form, 'POST', url('admin/locale/language/import'), array('enctype' => 'multipart/form-data'));
   return $output;
diff --git a/modules/locale.module b/modules/locale.module
index f239bb17628efdd8dc6ded6a7c136dcaa5afa441..6669f1df058739e3202d06d3285df260bdf2b847 100644
--- a/modules/locale.module
+++ b/modules/locale.module
@@ -26,7 +26,7 @@ function locale_help($section = "admin/help#locale") {
     case 'admin/locale/language/add':
       return t("<p>You need to add all languages you would like to provide the site interface in. If you can't find the desired language in the quick add dropdown, then need to provide the proper language code yourself. The language code might be used to negotiate with browsers and present flags, so it is important to pick one that is standardised for the desired language. You can also add languages by <a href=\"%import\">importing translations</a> directly into a language not yet set up.</p>", array("%import" => url("admin/locale/language/import")));
     case 'admin/locale/language/import':
-      return t("<p>This page allows you to import a translation provided in the gettext Portable Object (.po) format.  The easiest way to get your site translated is to grab an existing Drupal translation and to import it.  You can obtain translations from the <a href=\"%url\">Drupal translation page</a>.</p>", array('%url' => 'http://drupal.org/translations'));
+      return t("<p>This page allows you to import a translation provided in the gettext Portable Object (.po) format.  The easiest way to get your site translated is to grab an existing Drupal translation and to import it.  You can obtain translations from the <a href=\"%url\">Drupal translation page</a>. Note that importing a translation file might take a while.</p>", array('%url' => 'http://drupal.org/translations'));
     case 'admin/locale/language/export':
       return t("<p>This page allows you to export Drupal strings. The first option is to export a translation so it can be shared. The second option is to generate a translation template, which contains all Drupal strings, but without their translations. You can use this template to start a new translation using a specialized desktop application.</p>");
     case 'admin/locale/string/search':
diff --git a/modules/locale/locale.module b/modules/locale/locale.module
index f239bb17628efdd8dc6ded6a7c136dcaa5afa441..6669f1df058739e3202d06d3285df260bdf2b847 100644
--- a/modules/locale/locale.module
+++ b/modules/locale/locale.module
@@ -26,7 +26,7 @@ function locale_help($section = "admin/help#locale") {
     case 'admin/locale/language/add':
       return t("<p>You need to add all languages you would like to provide the site interface in. If you can't find the desired language in the quick add dropdown, then need to provide the proper language code yourself. The language code might be used to negotiate with browsers and present flags, so it is important to pick one that is standardised for the desired language. You can also add languages by <a href=\"%import\">importing translations</a> directly into a language not yet set up.</p>", array("%import" => url("admin/locale/language/import")));
     case 'admin/locale/language/import':
-      return t("<p>This page allows you to import a translation provided in the gettext Portable Object (.po) format.  The easiest way to get your site translated is to grab an existing Drupal translation and to import it.  You can obtain translations from the <a href=\"%url\">Drupal translation page</a>.</p>", array('%url' => 'http://drupal.org/translations'));
+      return t("<p>This page allows you to import a translation provided in the gettext Portable Object (.po) format.  The easiest way to get your site translated is to grab an existing Drupal translation and to import it.  You can obtain translations from the <a href=\"%url\">Drupal translation page</a>. Note that importing a translation file might take a while.</p>", array('%url' => 'http://drupal.org/translations'));
     case 'admin/locale/language/export':
       return t("<p>This page allows you to export Drupal strings. The first option is to export a translation so it can be shared. The second option is to generate a translation template, which contains all Drupal strings, but without their translations. You can use this template to start a new translation using a specialized desktop application.</p>");
     case 'admin/locale/string/search':