diff --git a/core/lib/Drupal/Core/Config/ConfigManager.php b/core/lib/Drupal/Core/Config/ConfigManager.php
index 47b171c9ce91166fa1433488d77c42b1a7c9ccf6..e0d57e186951aea5f3fd5ebadecfa304a0fd025b 100644
--- a/core/lib/Drupal/Core/Config/ConfigManager.php
+++ b/core/lib/Drupal/Core/Config/ConfigManager.php
@@ -11,6 +11,7 @@
 use Drupal\Core\Config\Entity\ConfigDependencyManager;
 use Drupal\Core\Entity\EntityManagerInterface;
 use Drupal\Core\Entity\EntityTypeInterface;
+use Drupal\Core\StringTranslation\StringTranslationTrait;
 use Drupal\Core\StringTranslation\TranslationManager;
 use Symfony\Component\EventDispatcher\EventDispatcherInterface;
 
@@ -18,6 +19,7 @@
  * The ConfigManager provides helper functions for the configuration system.
  */
 class ConfigManager implements ConfigManagerInterface {
+  use StringTranslationTrait;
 
   /**
    * The entity manager.
@@ -40,13 +42,6 @@ class ConfigManager implements ConfigManagerInterface {
    */
   protected $typedConfigManager;
 
-  /**
-   * The string translation service.
-   *
-   * @var \Drupal\Core\StringTranslation\TranslationManager
-   */
-  protected $stringTranslation;
-
   /**
    * The active configuration storage.
    *
@@ -148,11 +143,11 @@ public function diff(StorageInterface $source_storage, StorageInterface $target_
     // Check for new or removed files.
     if ($source_data === array('false')) {
       // Added file.
-      $source_data = array($this->stringTranslation->translate('File added'));
+      $source_data = array($this->t('File added'));
     }
     if ($target_data === array('false')) {
       // Deleted file.
-      $target_data = array($this->stringTranslation->translate('File removed'));
+      $target_data = array($this->t('File removed'));
     }
 
     return new \Diff($source_data, $target_data);