diff --git a/core/modules/migrate_drupal/config/optional/migrate.migration.d7_locale_settings.yml b/core/modules/migrate_drupal/config/optional/migrate.migration.d7_locale_settings.yml
new file mode 100644
index 0000000..9c097244
--- /dev/null
+++ b/core/modules/migrate_drupal/config/optional/migrate.migration.d7_locale_settings.yml
@@ -0,0 +1,19 @@
+id: d7_locale_settings
+label: Drupal 7 locale configuration
+migration_tags:
+  - Drupal 7
+source:
+  plugin: variable
+  variables:
+    - locale_cache_strings
+    - locale_js_directory
+process:
+  cache_strings: locale_cache_strings
+  'javascript/directory': locale_js_directory
+destination:
+  plugin: config
+  config_name: locale.settings
+dependencies:
+  module:
+    - locale
+    - migrate_drupal
diff --git a/core/modules/migrate_drupal/src/Tests/Table/d7/Variable.php b/core/modules/migrate_drupal/src/Tests/Table/d7/Variable.php
index f6faf11..4b5e620 100644
--- a/core/modules/migrate_drupal/src/Tests/Table/d7/Variable.php
+++ b/core/modules/migrate_drupal/src/Tests/Table/d7/Variable.php
@@ -176,6 +176,12 @@ public function load() {
       'name' => 'language_types',
       'value' => 'a:3:{s:8:"language";b:1;s:16:"language_content";b:0;s:12:"language_url";b:0;}',
     ))->values(array(
+      'name' => 'locale_cache_strings',
+      'value' => 'b:1;',
+    ))->values(array(
+      'name' => 'locale_js_directory',
+      'value' => 's:12:"translations";',
+    ))->values(array(
       'name' => 'maintenance_mode',
       'value' => 'i:0;',
     ))->values(array(
@@ -419,4 +425,4 @@ public function load() {
   }
 
 }
-#dfc4cdd451a6575677b8c10442893d26
+#00b6fb24284d10d0706e3e411ec16444
diff --git a/core/modules/migrate_drupal/src/Tests/d7/MigrateLocaleSettingsTest.php b/core/modules/migrate_drupal/src/Tests/d7/MigrateLocaleSettingsTest.php
new file mode 100644
index 0000000..ad432ef
--- /dev/null
+++ b/core/modules/migrate_drupal/src/Tests/d7/MigrateLocaleSettingsTest.php
@@ -0,0 +1,44 @@
+<?php
+
+/**
+ * @file
+ * Contains \Drupal\migrate_drupal\Tests\d7\MigrateLocaleSettingsTest.
+ */
+
+namespace Drupal\migrate_drupal\Tests\d7;
+
+use Drupal\migrate\Entity\Migration;
+use Drupal\migrate\MigrateExecutable;
+
+/**
+ * Tests migration of Locale's variables into configuration.
+ *
+ * @group migrate_drupal 7.x
+ */
+class MigrateLocaleSettingsTest extends MigrateDrupal7TestBase {
+
+  public static $modules = ['language', 'locale'];
+
+  /**
+   * {@inheritdoc}
+   */
+  protected function setUp() {
+    parent::setUp();
+    $this->installConfig(static::$modules);
+    $this->loadDumps([
+      $this->getDumpDirectory() . '/Variable.php',
+    ]);
+    $migration = Migration::load('d7_locale_settings');
+    (new MigrateExecutable($migration, $this))->import();
+  }
+
+  /**
+   * Tests migration of Locale's settings to configuration.
+   */
+  public function testMigration() {
+    $config = \Drupal::config('locale.settings')->get();
+    $this->assertTrue($config['cache_strings']);
+    $this->assertIdentical('translations', $config['javascript']['directory']);
+  }
+
+}
