diff --git a/mailchimp.module b/mailchimp.module
index ac7739d..1c7fbe8 100644
--- a/mailchimp.module
+++ b/mailchimp.module
@@ -1388,14 +1388,14 @@ function mailchimp_interest_groups_form_elements($list, $defaults = array(), $em
     // Extract the field options:
     $options = array();
     if ($field_type == 'select') {
-      $options[''] = '-- select --';
+      $options[''] = t('-- select --');
     }
 
     $default_values = array();
 
     // Set interest options and default values.
     foreach ($interest_data->interests as $interest) {
-      $options[$interest->id] = $interest->name;
+      $options[$interest->id] = t($interest->name);
 
       if (isset($memberinfo)) {
         if (isset($memberinfo->interests->{$interest->id}) && ($memberinfo->interests->{$interest->id} === TRUE)) {
@@ -1411,7 +1411,7 @@ function mailchimp_interest_groups_form_elements($list, $defaults = array(), $em
 
     $return[$group->id] = array(
       '#type' => $field_type,
-      '#title' => $group->title,
+      '#title' => t($group->title),
       '#options' => $options,
       '#default_value' => isset($default_values[$group->id]) ? $default_values[$group->id] : array(),
       '#attributes' => array('class' => array('mailchimp-newsletter-interests-' . $list->id)),
@@ -1484,7 +1484,7 @@ function mailchimp_insert_drupal_form_tag($mergevar) {
       // on MailChimp.
       $choices = array();
       foreach ($mergevar->options->choices as $choice) {
-        $choices[$choice] = $choice;
+        $choices[$choice] = t($choice);
       }
 
       $input['#options'] = $choices;
@@ -1499,7 +1499,7 @@ function mailchimp_insert_drupal_form_tag($mergevar) {
       // on MailChimp.
       $choices = array();
       foreach ($mergevar->options->choices as $choice) {
-        $choices[$choice] = $choice;
+        $choices[$choice] = t($choice);
       }
 
       $input['#options'] = $choices;
