diff --git a/core/modules/system/lib/Drupal/system/Plugin/Block/SystemBrandingBlock.php b/core/modules/system/lib/Drupal/system/Plugin/Block/SystemBrandingBlock.php index 3310023..b720bae 100644 --- a/core/modules/system/lib/Drupal/system/Plugin/Block/SystemBrandingBlock.php +++ b/core/modules/system/lib/Drupal/system/Plugin/Block/SystemBrandingBlock.php @@ -112,11 +112,11 @@ public function blockForm($form, &$form_state) { $theme_settings_url = $this->urlGenerator->generateFromRoute('system.theme_settings_theme', array('theme' => $theme)); // Provide links to the Appearance and Theme Settings pages - // if user has access to administer themes. + // if the user has access to administer themes. $site_logo_description = $this->t('Defined on the Appearance or Theme Settings page.', array('@appearance' => $appearance_url, '@theme' => $theme_settings_url)); } else { - // Explain that user does not have access to the Appearance and Theme + // Explain that the user does not have access to the Appearance and Theme // Settings pages. $site_logo_description = $this->t('Defined on the Appearance or Theme Settings page. You do not have the appropriate permissions to change the site logo.'); } @@ -124,13 +124,13 @@ public function blockForm($form, &$form_state) { // Get paths to settings pages. $site_information_url = $this->urlGenerator->generateFromRoute('system.site_information_settings'); - // Provide link to Site Information page if user has access to + // Provide link to Site Information page if the user has access to // administer site configuration. $site_name_description = $this->t('Defined on the Site Information page.', array('@information' => $site_information_url)); $site_slogan_description = $this->t('Defined on the Site Information page.', array('@information' => $site_information_url)); } else { - // Explain that user does not have access to the Site Information page. + // Explain that the user does not have access to the Site Information page. $site_name_description = $this->t('Defined on the Site Information page. You do not have the appropriate permissions to change the site logo.'); $site_slogan_description = $this->t('Defined on the Site Information page. You do not have the appropriate permissions to change the site logo.'); } diff --git a/core/themes/bartik/bartik.theme b/core/themes/bartik/bartik.theme index a222759..f90276b 100644 --- a/core/themes/bartik/bartik.theme +++ b/core/themes/bartik/bartik.theme @@ -121,7 +121,7 @@ function bartik_preprocess_node(&$variables) { } /** - * Implements hook_preprocess_HOOK() for system branding block templates. + * Implements hook_preprocess_HOOK() for block templates. */ function bartik_preprocess_block(&$variables) { // Add a clearfix class to system branding blocks.