Skip to content

Commit

Permalink
CuBoulder/tiamat-theme#551 swaps inline and above for secondary menu …
Browse files Browse the repository at this point in the history
…position
  • Loading branch information
timurtripp committed Dec 5, 2023
1 parent e60a8e7 commit 5eb684a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/SiteConfiguration.php
Original file line number Diff line number Diff line change
Expand Up @@ -209,8 +209,8 @@ public function buildThemeSettingsForm(array &$form, FormStateInterface &$form_s
'#title' => $this->t('Position of the secondary menu'),
'#default_value' => theme_get_setting('ucb_secondary_menu_position', $themeName),
'#options' => [
'inline' => $this->t('Inline with the main navigation'),
'above' => $this->t('Above the main navigation'),
'inline' => $this->t('Inline with the main navigation'),
],
'#description' => $this->t('The secondary menu of this site can be populated with secondary or action links and displayed inline with or above the main navigation.'),
];
Expand All @@ -236,7 +236,7 @@ public function buildThemeSettingsForm(array &$form, FormStateInterface &$form_s
'bold' => $this->t('Bold'),
'normal' => $this->t('Normal'),
],
'#description' => $this->t('Headers are bold by default, but can also be set to the same font weight as normal text.'),
'#description' => $this->t('Headings are bold by default, but can also be set to the same font weight as normal text.'),
];

$form['misc'] = [
Expand Down

0 comments on commit 5eb684a

Please sign in to comment.