diff --git a/core/modules/system/system.links.menu.yml b/core/modules/system/system.links.menu.yml index 37d5ecd..d365711 100644 --- a/core/modules/system/system.links.menu.yml +++ b/core/modules/system/system.links.menu.yml @@ -18,7 +18,7 @@ system.admin_structure: system.themes_page: route_name: system.themes_page title: Appearance - description: 'Select and configure your themes.' + description: 'Select and configure themes.' parent: system.admin weight: -6 system.modules_list: @@ -56,13 +56,13 @@ system.admin_config_services: system.rss_feeds_settings: title: 'RSS publishing' parent: system.admin_config_services - description: 'Configure the site description, the number of items per feed and whether feeds should be titles/teasers/full-text.' + description: 'Configure the site description, the number of items per feed, and whether feeds should be titles/teasers/full-text.' route_name: system.rss_feeds_settings system.admin_config_development: route_name: system.admin_config_development parent: system.admin_config title: Development - description: 'Development tools.' + description: 'Configure and use development tools.' weight: -10 system.site_maintenance_mode: title: 'Maintenance mode' @@ -73,7 +73,7 @@ system.site_maintenance_mode: system.performance_settings: title: Performance parent: system.admin_config_development - description: 'Settings for caching and bandwidth optimization for CSS and JavaScript files.' + description: 'Configure caching and bandwidth optimization.' route_name: system.performance_settings weight: -20 system.logging_settings: @@ -86,12 +86,12 @@ system.admin_config_regional: route_name: system.admin_config_regional title: 'Regional and language' parent: system.admin_config - description: 'Regional settings, localization and translation.' + description: 'Configure regional settings, localization, and translation.' weight: -5 system.regional_settings: title: 'Regional settings' parent: system.admin_config_regional - description: 'Settings for timezone and country.' + description: 'Configure the timezone and country.' route_name: system.regional_settings weight: -20 entity.date_format.collection: @@ -104,16 +104,16 @@ system.admin_config_search: title: 'Search and metadata' route_name: system.admin_config_search parent: system.admin_config - description: 'Configure site search, metadata, and SEO.' + description: 'Configure site search, metadata, and search engine optimization.' weight: -10 system.admin_config_system: title: System route_name: system.admin_config_system parent: system.admin_config - description: 'Configure site information, actions, and cron settings.' + description: 'Configure basic site settings, actions, and cron.' weight: -20 system.site_information_settings: - title: 'Site information' + title: 'Basic site settings' parent: system.admin_config_system description: 'Change site name, email address, slogan, default front page, and error pages.' route_name: system.site_information_settings diff --git a/core/modules/system/system.module b/core/modules/system/system.module index d0ff53f..81b18ce 100644 --- a/core/modules/system/system.module +++ b/core/modules/system/system.module @@ -90,7 +90,7 @@ function system_help($route_name, RouteMatchInterface $route_match) { $output .= '
' . t('Disabling drag-and-drop functionality') . '
'; $output .= '
' . t('The default drag-and-drop user interface for ordering tables in the administrative interface presents a challenge for some users, including users of screen readers and other assistive technology. The drag-and-drop interface can be disabled in a table by clicking a link labeled "Show row weights" above the table. The replacement interface allows users to order the table by choosing numerical weights instead of dragging table rows.') . '
'; $output .= '
' . t('Configuring basic site settings') . '
'; - $output .= '
' . t('The System module provides pages for managing basic site configuration, including Date and time formats and basic Site information (site name, email address to send mail from, home page, and error pages). Additional configuration pages are listed on the main Configuration page.', array(':date-time-settings' => \Drupal::url('entity.date_format.collection'), ':site-info' => \Drupal::url('system.site_information_settings'), ':config' => \Drupal::url('system.admin_config'))) . '
'; + $output .= '
' . t('The System module provides pages for managing basic site configuration, including Date and time formats and Basic site settings (site name, email address to send mail from, home page, and error pages). Additional configuration pages are listed on the main Configuration page.', array(':date-time-settings' => \Drupal::url('entity.date_format.collection'), ':site-info' => \Drupal::url('system.site_information_settings'), ':config' => \Drupal::url('system.admin_config'))) . '
'; $output .= '
' . t('Checking site status') . '
'; $output .= '
' . t('The Status report provides an overview of the configuration, status, and health of your site. Review this report to make sure there are not any problems to address, and to find information about the software your site and web server are using.', array(':status' => \Drupal::url('system.status'))) . '
'; $output .= '
' . t('Using maintenance mode') . '
'; diff --git a/core/modules/system/system.routing.yml b/core/modules/system/system.routing.yml index 15f06e3..ed111f8 100644 --- a/core/modules/system/system.routing.yml +++ b/core/modules/system/system.routing.yml @@ -146,7 +146,7 @@ system.site_information_settings: path: '/admin/config/system/site-information' defaults: _form: 'Drupal\system\Form\SiteInformationForm' - _title: 'Site information' + _title: 'Basic site settings' requirements: _permission: 'administer site configuration'