diff --git a/core/modules/search/src/SearchPageListBuilder.php b/core/modules/search/src/SearchPageListBuilder.php index 8b844a6b5e488988bd72db6d90103ee4e70672b5..85e2be248ea164027aa137effcda2846e84bbbc8 100644 --- a/core/modules/search/src/SearchPageListBuilder.php +++ b/core/modules/search/src/SearchPageListBuilder.php @@ -226,19 +226,17 @@ public function buildForm(array $form, FormStateInterface $form_state) { ]; $form['indexing_throttle']['cron_limit'] = [ '#type' => 'select', - '#title' => $this->t('Number of items to index per cron run'), + '#title' => $this->t('Number of items to index per run'), '#default_value' => $search_settings->get('index.cron_limit'), '#options' => $items, - '#description' => $this->t('The maximum number of items indexed in each run of the <a href=":cron">cron maintenance task</a>. If necessary, reduce the number of items to prevent timeouts and memory errors while indexing. Some search page types may have their own setting for this.', [':cron' => Url::fromRoute('system.cron_settings')->toString()]), + '#description' => $this->t('The maximum number of items processed per indexing run. If necessary, reduce the number of items to prevent timeouts and memory errors while indexing. Some search page types may have their own setting for this.'), ]; // Indexing settings: $form['indexing_settings'] = [ '#type' => 'details', '#title' => $this->t('Default indexing settings'), '#open' => TRUE, - ]; - $form['indexing_settings']['info'] = [ - '#markup' => $this->t("<p>Search pages that use an index may use the default index provided by the Search module, or they may use a different indexing mechanism. These settings are for the default index. <em>Changing these settings will cause the default search index to be rebuilt to reflect the new settings. Searching will continue to work, based on the existing index, but new content won't be indexed until all existing content has been re-indexed.</em></p><p><em>The default settings should be appropriate for the majority of sites.</em></p>"), + '#description' => $this->t('Changing these settings will cause the default search index to be rebuilt to reflect the new settings. Searching will continue to work, based on the existing index, but new content will not be indexed until all existing content has been re-indexed.'), ]; $form['indexing_settings']['minimum_word_size'] = [ '#type' => 'number',