diff --git a/media_gallery.module b/media_gallery.module
index cb76f3e..101e659 100644
--- a/media_gallery.module
+++ b/media_gallery.module
@@ -880,7 +880,7 @@ function media_gallery_form_media_gallery_node_form_alter(&$form, &$form_state)
   // Move the items to the fieldset.
   foreach($fieldset as $id => $subgroup) {
     $form['settings_wrapper'][$subgroup][$id] = $form[$id];
-    unset($form[$id]);
+    $form[$id] = array('#language' => NULL);
   }
 
   // Add a vertical tab menu for blocks
@@ -903,7 +903,7 @@ function media_gallery_form_media_gallery_node_form_alter(&$form, &$form_state)
   // Move the items to the fieldset.
   foreach($fieldset as $id => $subgroup) {
     $form[$subgroup][$id] = $form[$id];
-    unset($form[$id]);
+    $form[$id] = array('#language' => NULL);
   }
 
   // Add a class to the fieldset to target it in the js
