diff --git a/core/modules/action/action.info.yml b/core/modules/action/action.info.yml
index 7559efbcb2..2a31ec3e28 100644
--- a/core/modules/action/action.info.yml
+++ b/core/modules/action/action.info.yml
@@ -1,4 +1,4 @@
-name: Actions
+name: Actions UI
 type: module
 description: 'Perform tasks on specific events triggered within the system.'
 package: Core
diff --git a/core/modules/action/action.links.menu.yml b/core/modules/action/action.links.menu.yml
index 99b2ac89af..f7d4e2309e 100644
--- a/core/modules/action/action.links.menu.yml
+++ b/core/modules/action/action.links.menu.yml
@@ -1,5 +1,5 @@
 action.admin:
-  title: Actions
+  title: Actions UI
   description: 'Create tasks that the system can execute.'
   route_name: entity.action.collection
   parent: system.admin_config_system
diff --git a/core/modules/action/action.module b/core/modules/action/action.module
index 8d162615ea..8aa83f513b 100644
--- a/core/modules/action/action.module
+++ b/core/modules/action/action.module
@@ -18,18 +18,18 @@ function action_help($route_name, RouteMatchInterface $route_match) {
     case 'help.page.action':
       $output = '';
       $output .= '<h3>' . t('About') . '</h3>';
-      $output .= '<p>' . t('The Actions module provides tasks that can be executed by the site such as unpublishing content, sending email messages, or blocking a user. Other modules can trigger these actions when specific system events happen; for example, when new content is posted or when a user logs in. Modules can also provide additional actions. For more information, see the <a href=":documentation">online documentation for the Actions module</a>.', [':documentation' => 'https://www.drupal.org/documentation/modules/action']) . '</p>';
+      $output .= '<p>' . t('The Actions UI module provides tasks that can be executed by the site such as unpublishing content, sending email messages, or blocking a user. Other modules can trigger these actions ui when specific system events happen; for example, when new content is posted or when a user logs in. Modules can also provide additional actions ui. For more information, see the <a href=":documentation">online documentation for the Actions UI module</a>.', [':documentation' => 'https://www.drupal.org/documentation/modules/action']) . '</p>';
       $output .= '<h3>' . t('Uses') . '</h3>';
       $output .= '<dl>';
-      $output .= '<dt>' . t('Using simple actions') . '</dt>';
-      $output .= '<dd>' . t('<em>Simple actions</em> do not require configuration and are listed automatically as available on the <a href=":actions">Actions page</a>.', [':actions' => Url::fromRoute('entity.action.collection')->toString()]) . '</dd>';
+      $output .= '<dt>' . t('Using simple actions ui') . '</dt>';
+      $output .= '<dd>' . t('<em>Simple actions ui</em> do not require configuration and are listed automatically as available on the <a href=":actions">Actions UI page</a>.', [':actions' => Url::fromRoute('entity.action.collection')->toString()]) . '</dd>';
       $output .= '<dt>' . t('Creating and configuring advanced actions') . '</dt>';
-      $output .= '<dd>' . t('<em>Advanced actions</em> are user-created and have to be configured individually. Create an advanced action on the <a href=":actions">Actions page</a> by selecting an action type from the drop-down list. Then configure your action, for example by specifying the recipient of an automated email message.', [':actions' => Url::fromRoute('entity.action.collection')->toString()]) . '</dd>';
+      $output .= '<dd>' . t('<em>Advanced actions ui</em> are user-created and have to be configured individually. Create an advanced action on the <a href=":actions">Actions UI page</a> by selecting an action type from the drop-down list. Then configure your action, for example by specifying the recipient of an automated email message.', [':actions' => Url::fromRoute('entity.action.collection')->toString()]) . '</dd>';
       $output .= '</dl>';
       return $output;
 
     case 'entity.action.collection':
-      $output = '<p>' . t('There are two types of actions: simple and advanced. Simple actions do not require any additional configuration and are listed here automatically. Advanced actions need to be created and configured before they can be used because they have options that need to be specified; for example, sending an email to a specified address or unpublishing content containing certain words. To create an advanced action, select the action from the drop-down list in the advanced action section below and click the <em>Create</em> button.') . '</p>';
+      $output = '<p>' . t('There are two types of actions ui: simple and advanced. Simple actions ui do not require any additional configuration and are listed here automatically. Advanced actions ui need to be created and configured before they can be used because they have options that need to be specified; for example, sending an email to a specified address or unpublishing content containing certain words. To create an advanced action, select the action from the drop-down list in the advanced action section below and click the <em>Create</em> button.') . '</p>';
       return $output;
 
     case 'action.admin_add':
