diff --git a/src/Form/ContentImport.php b/src/Form/ContentImport.php
index ce06745..1c0cb8a 100644
--- a/src/Form/ContentImport.php
+++ b/src/Form/ContentImport.php
@@ -304,7 +304,8 @@ class ContentImport extends ConfigFormBase {
           }
 
           $logVariationFields .= "********************************* Importing node ****************************  \n \n";
-
+          // Default Language
+          $nodeArray['langcode'] = 'en';
           for ($f = 0; $f < count($fieldNames); $f++) {
             switch ($fieldTypes[$f]) {
               case 'image':
@@ -409,7 +410,7 @@ class ContentImport extends ConfigFormBase {
                 $logVariationFields .= " Success \n";
                 break;
 
-              case 'langcode':
+              case 'lang':
                 $logVariationFields .= "Importing Langcode (" . $fieldNames[$f] . ") :: ";
                 $nodeArray[$fieldNames[$f]] = ($data[$keyIndex[$fieldNames[$f]]] != '') ? $data[$keyIndex[$fieldNames[$f]]] : 'en';
                 $logVariationFields .= " Success \n";
@@ -451,11 +452,6 @@ class ContentImport extends ConfigFormBase {
                 break;
             }
           }
-
-          if (array_search('langcode', $data) === FALSE) {
-            $nodeArray['langcode'] = 'en';
-          }
-
           $nodeArray['type'] = strtolower($contentType);
           $nodeArray['uid'] = 1;
           $nodeArray['promote'] = 0;
