Skip to content

Commit

Permalink
Issue backdrop#2772: Wrap toggle checkbox title with t() function.
Browse files Browse the repository at this point in the history
  • Loading branch information
opi authored and serundeputy committed Jul 27, 2017
1 parent 8f85ad7 commit b1eea76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/modules/system/system.menu.inc
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ function system_menu_block_form($config) {
);
$form['toggle'] = array(
'#type' => 'checkbox',
'#title' => 'Display menu toggle button on small screens',
'#title' => t('Display menu toggle button on small screens'),
'#default_value' => $config['toggle'],
'#description' => t('A menu toggle button, commonly known as a hamburger icon, allows the menu to be hidden initially on devices with small screens, but then easily expanded.'),
);
Expand Down

0 comments on commit b1eea76

Please sign in to comment.