diff --git a/core/modules/aggregator/aggregator.module b/core/modules/aggregator/aggregator.module index 49689ce9942..9e544073b01 100644 --- a/core/modules/aggregator/aggregator.module +++ b/core/modules/aggregator/aggregator.module @@ -47,7 +47,7 @@ function aggregator_help($route_name, RouteMatchInterface $route_match) { // Don't use placeholders for possibility to change URLs for translators. $output = '
' . t('Many sites publish their headlines and posts in feeds, using a number of standardized XML-based formats. The aggregator supports RSS, RDF, and Atom.') . '
'; // cspell:ignore addfeed - $output .= '' . t('Current feeds are listed below, and new feeds may be added. For each feed, the latest items block may be enabled at the blocks administration page.', [':addfeed' => Url::fromRoute('aggregator.feed_add')->toString(), ':block' => (\Drupal::moduleHandler()->moduleExists('block')) ? Url::fromRoute('block.admin_display')->toString() : '#']) . '
'; + $output .= '' . t('Current feeds are listed below, and new feeds may be added. For each feed, the @block_name block may be enabled at the block layout page.', [':addfeed' => Url::fromRoute('aggregator.feed_add')->toString(), '@block_name' => t('Aggregator feed'), ':block' => (\Drupal::moduleHandler()->moduleExists('block')) ? Url::fromRoute('block.admin_display')->toString() : '#']) . '
'; return $output; case 'aggregator.feed_add':