Skip to content
Snippets Groups Projects
Commit 8037cf43 authored by ressa's avatar ressa Committed by Eirik Morland
Browse files

Issue #3188928 by ressa: Fix module name in GUI, add documentation about fields

parent 99d7e65a
No related branches found
No related tags found
No related merge requests found
linkchecker.admin_settings_form:
title: 'Link checker'
parent: system.admin_config_content
description: 'Configure the content types that should be checked for broken links and how the hypertext links will be checked and reported and repaired.'
description: 'Configure the fields under each content type that should be scanned for broken links and how the hypertext links will be checked and reported and repaired.'
route_name: linkchecker.admin_settings_form
......@@ -75,7 +75,7 @@ function linkchecker_form_field_config_form_alter(&$form, FormStateInterface $fo
$form['third_party_settings']['linkchecker'] = [
'#type' => 'details',
'#title' => t('LinkChecker settings'),
'#title' => t('Link checker settings'),
];
/** @var \Drupal\linkchecker\Plugin\LinkExtractorManager $linkExtractorManager */
......
......@@ -5,8 +5,8 @@ access own broken links report:
title: 'Access own broken links report'
description: 'Allows users to access their user specific broken links report.'
administer linkchecker:
title: 'Administer linkchecker'
description: 'Allows users to administer linkchecker settings.'
title: 'Administer Link checker'
description: 'Allows users to administer Link checker settings.'
restrict access: true
edit linkchecker link settings:
title: 'Edit link settings'
......
......@@ -149,7 +149,7 @@ class LinkCheckerAdminSettingsForm extends ConfigFormBase {
$form['general'] = [
'#type' => 'details',
'#title' => $this->t('General settings'),
'#description' => $this->t('Configure the <a href=":url">content types</a> that should be scanned for broken links.', [
'#description' => $this->t('Configure the fields under each <a href=":url">content type</a> that should be scanned for broken links.', [
':url' => Url::fromRoute('entity.node_type.collection')
->toString(),
]),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment