diff --git a/core/modules/locale/locale.bulk.inc b/core/modules/locale/locale.bulk.inc
index 9206225..f420bfe 100644
--- a/core/modules/locale/locale.bulk.inc
+++ b/core/modules/locale/locale.bulk.inc
@@ -37,6 +37,7 @@
  *   See http://drupal.org/node/1191488.
  */
 function locale_translate_batch_import_files(array $options, $force = FALSE) {
+  \Drupal::moduleHandler()->loadInclude('locale', 'translation.inc');
   $options += array(
     'overwrite_options' => array(),
     'customized' => LOCALE_NOT_CUSTOMIZED,
diff --git a/core/modules/locale/src/Form/ImportForm.php b/core/modules/locale/src/Form/ImportForm.php
index ae4424c..68cdd17 100644
--- a/core/modules/locale/src/Form/ImportForm.php
+++ b/core/modules/locale/src/Form/ImportForm.php
@@ -178,16 +178,22 @@ public function submitForm(array &$form, FormStateInterface $form_state) {
       $language->save();
       drupal_set_message($this->t('The language %language has been created.', array('%language' => $this->t($language->label()))));
     }
-    $options = array(
+    $options = array_merge(_locale_translation_default_update_options(), array(
       'langcode' => $form_state->getValue('langcode'),
       'overwrite_options' => $form_state->getValue('overwrite_options'),
       'customized' => $form_state->getValue('customized') ? LOCALE_CUSTOMIZED : LOCALE_NOT_CUSTOMIZED,
-    );
+    ));
     $this->moduleHandler->loadInclude('locale', 'bulk.inc');
     $file = locale_translate_file_attach_properties($this->file, $options);
     $batch = locale_translate_batch_build(array($file->uri => $file), $options);
     batch_set($batch);
 
+    // Create or update all configuration translations for this language.
+    \Drupal::moduleHandler()->loadInclude('locale', 'bulk.inc');
+    if ($batch = locale_config_batch_update_components($options, array($form_state->getValue('langcode')))) {
+      batch_set($batch);
+    }
+
     $form_state->setRedirect('locale.translate_page');
   }
 }
