diff -u b/core/modules/action/action.module b/core/modules/action/action.module
--- b/core/modules/action/action.module
+++ b/core/modules/action/action.module
@@ -2,7 +2,7 @@
/**
* @file
- * This is the Action UI module for executing stored actions.
+ * This is the Actions UI module for executing stored actions.
*/
use Drupal\Core\Url;
@@ -18,13 +18,13 @@
case 'help.page.action':
$output = '';
$output .= '
' . t('About') . '
';
- $output .= '' . 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 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 online documentation for the Actions UI module.', [':documentation' => 'https://www.drupal.org/documentation/modules/action']) . '
';
+ $output .= '' . 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. For more information, see the online documentation for the Actions UI module.', [':documentation' => 'https://www.drupal.org/documentation/modules/action']) . '
';
$output .= '' . t('Uses') . '
';
$output .= '';
$output .= '- ' . t('Using simple actions') . '
';
- $output .= '- ' . t('Simple actions do not require configuration and are listed automatically as available on the Actions UI page.', [':actions' => Url::fromRoute('entity.action.collection')->toString()]) . '
';
+ $output .= '- ' . t('Simple actions do not require configuration and are listed automatically as available on the Actions page.', [':actions' => Url::fromRoute('entity.action.collection')->toString()]) . '
';
$output .= '- ' . t('Creating and configuring advanced actions') . '
';
- $output .= '- ' . t('Advanced actions are user-created and have to be configured individually. Create an advanced action on the Actions UI page 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()]) . '
';
+ $output .= '- ' . t('Advanced actions are user-created and have to be configured individually. Create an advanced action on the Actions page 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()]) . '
';
$output .= '
';
return $output;
reverted:
--- b/core/modules/action/action.routing.yml
+++ a/core/modules/action/action.routing.yml
@@ -1,7 +1,7 @@
entity.action.collection:
path: '/admin/config/system/actions'
defaults:
+ _title: 'Actions'
- _title: 'Actions UI'
_entity_list: 'action'
requirements:
_permission: 'administer actions'