diff --git a/core/lib/Drupal/Core/ParamConverter/AdminPathConfigEntityConverter.php b/core/lib/Drupal/Core/ParamConverter/AdminPathConfigEntityConverter.php
index 3f3e9a7..3786297 100644
--- a/core/lib/Drupal/Core/ParamConverter/AdminPathConfigEntityConverter.php
+++ b/core/lib/Drupal/Core/ParamConverter/AdminPathConfigEntityConverter.php
@@ -19,7 +19,7 @@
  * converting to entities with overrides, such as the negotiated language.
  *
  * This converter applies only if the path is an admin path, the entity is
- * a config entity, and the "use_current_language" element is not set to TRUE
+ * a config entity, and the "with_config_overrides" element is not set to TRUE
  * on the parameter definition.
  *
  * Due to this converter having a higher weight than the default
@@ -90,7 +90,7 @@ public function convert($value, $definition, $name, array $defaults) {
    * {@inheritdoc}
    */
   public function applies($definition, $name, Route $route) {
-    if (isset($definition['use_current_language']) && $definition['use_current_language']) {
+    if (isset($definition['with_config_overrides']) && $definition['with_config_overrides']) {
       return FALSE;
     }
 
diff --git a/core/modules/language/tests/language_test/language_test.routing.yml b/core/modules/language/tests/language_test/language_test.routing.yml
index 4f9a78c..a0464c5 100644
--- a/core/modules/language/tests/language_test/language_test.routing.yml
+++ b/core/modules/language/tests/language_test/language_test.routing.yml
@@ -30,4 +30,4 @@ language_test.entity_using_current_language:
       configurable_language:
         type: entity:configurable_language
         # Force load in current interface language.
-        use_current_language: 'TRUE'
+        with_config_overrides: TRUE
diff --git a/core/modules/node/node.routing.yml b/core/modules/node/node.routing.yml
index 2eff2f0..d4d6d57 100644
--- a/core/modules/node/node.routing.yml
+++ b/core/modules/node/node.routing.yml
@@ -28,7 +28,7 @@ node.add:
     _node_operation_route: TRUE
     parameters:
       node_type:
-        use_current_language: TRUE
+        with_config_overrides: TRUE
 
 entity.node.preview:
   path: '/node/preview/{node_preview}/{view_mode_id}'
diff --git a/core/modules/system/core.api.php b/core/modules/system/core.api.php
index 3ffb004..bc9da1b 100644
--- a/core/modules/system/core.api.php
+++ b/core/modules/system/core.api.php
@@ -322,15 +322,20 @@
  *   Configuration entity classes expose dependencies by overriding the
  *   \Drupal\Core\Config\Entity\ConfigEntityInterface::calculateDependencies()
  *   method.
- * - On routes for paths staring with '\admin' with configuration entity
- *   placeholders, configuration entities are normally loaded in their original
- *   language, not translated. This is usually desirable, because most admin
- *   paths are for editing configuration, and you need that to be in the source
- *   language. If for some reason you need to have your configuration entity
- *   loaded in the currently-selected language on an admin path (for instance,
- *   if you go to example.com/es/admin/your_path and you need the entity to be
- *   in Spanish), then you can add a 'use_current_language' parameter option to
- *   your route. Here's an example using the configurable_language config
+ * - On routes for paths staring with '/admin' or otherwise designated as
+ *   administration paths (such as node editing when it is set as an admin
+ *   operation), if they have configuration entity placeholders, configuration
+ *   entities are normally loaded in their original language, without
+ *   translations or other overrides. This is usually desirable, because most
+ *   admin paths are for editing configuration, and you need that to be in the
+ *   source language and to lack possibly dynamic overrides. If for some reason
+ *   you need to have your configuration entity loaded in the currently-selected
+ *   language on an admin path (for instance, if you go to
+ *   example.com/es/admin/your_path and you need the entity to be in Spanish),
+ *   then you can add a 'with_config_overrides' parameter option to your route.
+ *   The same applies if you need to load the entity with overrides (or
+ *   translated) on an admin path like '/node/add/article' (when configured to
+ *   be an admin path). Here's an example using the configurable_language config
  *   entity:
  *   @code
  *   mymodule.myroute:
@@ -341,7 +346,7 @@
  *       parameters:
  *         configurable_language:
  *           type: entity:configurable_language
- *           use_current_language: 'TRUE'
+ *           with_config_overrides: TRUE
  *   @endcode
  *   With the route defined this way, the $configurable_language parameter to
  *   your controller method will come in translated to the current language.
