summaryrefslogtreecommitdiff
path: root/includes
diff options
context:
space:
mode:
Diffstat (limited to 'includes')
-rw-r--r--includes/locale.inc1
1 files changed, 0 insertions, 1 deletions
diff --git a/includes/locale.inc b/includes/locale.inc
index 8b9aa5c20..be15f0caf 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;