commit 0eb64e3b18ea6d5e4cba6071c740e3922fdca899 Author: Jen Lampton Date: Tue Jul 23 18:39:43 2013 -0700 don't conflict with other issues plz diff --git a/core/modules/locale/locale.bulk.inc b/core/modules/locale/locale.bulk.inc index 8a15656..e9bf1b7 100644 --- a/core/modules/locale/locale.bulk.inc +++ b/core/modules/locale/locale.bulk.inc @@ -51,10 +51,15 @@ function locale_translate_import_form($form, &$form_state) { 'file_validate_extensions' => array('po'), 'file_validate_size' => array(file_upload_max_size()), ); + $file_upload_help = array( + '#theme' => 'file_upload_help', + '#description' => t('A Gettext Portable Object file.'), + '#upload_validators' => $validators, + ); $form['file'] = array( '#type' => 'file', '#title' => t('Translation file'), - '#description' => theme('file_upload_help', array('description' => t('A Gettext Portable Object file.'), 'upload_validators' => $validators)), + '#description' => drupal_render($file_upload_help), '#size' => 50, '#upload_validators' => $validators, '#attributes' => array('class' => array('file-import-input')),