Skip to content

Commit

Permalink
Updated descriptions to remove 'node' references.
Browse files Browse the repository at this point in the history
  • Loading branch information
Peter Anderson committed Jan 29, 2018
1 parent 679598e commit 5916238
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions auto_menu_settings.module
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,14 @@ function auto_menu_settings_form_node_type_form_alter(&$form, $form_state) {
$form['menu']['auto_menu_settings_default'] = array(
'#type' => 'checkbox',
'#title' => t('Provide a default menu link'),
'#description' => t("Set the default value of the 'Provide a menu link' checkbox on the node form."),
'#description' => t("Set the default value of the 'Provide a menu link' checkbox on the content authoring form."),
'#default_value' => $settings['auto_menu_settings_default'],
'#weight' => -5,
);
$form['menu']['auto_menu_settings_title'] = array(
'#type' => 'textfield',
'#title' => t('Default menu link title'),
'#description' => t("Set the default value of the 'Menu link title' field on the node form. This field supports ") . $token_link . '.',
'#description' => t("Set the default value of the 'Menu link title' field on the content authoring form. This field supports ") . $token_link . '.',
'#default_value' => $settings['auto_menu_settings_title'],
'#weight' => -4,
'#element_validate' => array('token_element_validate'),
Expand All @@ -46,7 +46,7 @@ function auto_menu_settings_form_node_type_form_alter(&$form, $form_state) {
$form['menu']['auto_menu_settings_fields'] = array(
'#type' => 'checkboxes',
'#title' => t('Visible fields'),
'#description' => t('Show these fields to the node author. Untick fields to hide them.'),
'#description' => t('Show these fields to the content author. Untick fields to hide them.'),
'#options' => array(
'provide' => t("'Provide a menu link' checkbox"),
'title' => t("'Menu link title' textfield"),
Expand Down

0 comments on commit 5916238

Please sign in to comment.