'fieldset', '#title' => t('!Subscriptions module', array('!Subscriptions' => 'Subscriptions')), '#weight' => -5, ); $form['subscriptions']['explain'] = array( '#type' => 'item', '#value' => t('You have !Subscriptions mail templates that were created under Drupal 5. Please import or remove these templates.', array('!Subscriptions' => 'Subscriptions')), ); $lang_query = "SELECT DISTINCT(language) FROM {mail_edit} ORDER BY language ASC"; $lang_result = db_query($lang_query); $mail_langs = array();//fetch all current translations while($row = db_fetch_object($lang_result)) { $mail_langs[$row->language] = $row->language; } foreach (language_list() as $lang_key => $language) { $mail_langs[$lang_key] = $lang_key; }//