diff --git a/core/modules/field_ui/lib/Drupal/field_ui/Form/FieldAddForm.php b/core/modules/field_ui/lib/Drupal/field_ui/Form/FieldAddForm.php index 9dae33f..8e2c617 100644 --- a/core/modules/field_ui/lib/Drupal/field_ui/Form/FieldAddForm.php +++ b/core/modules/field_ui/lib/Drupal/field_ui/Form/FieldAddForm.php @@ -139,8 +139,7 @@ public function buildForm(array $form, array &$form_state, $entity_type = NULL, $form['type'] = array( '#type' => 'select', - '#title' => $this->t('Type of new field'), - '#title_display' => 'invisible', + '#title' => $this->t('Field type'), '#options' => $field_type_options, '#empty_option' => $this->t('- Select a field type -'), '#description' => $this->t('Type of data to store.'), @@ -229,7 +228,7 @@ public function buildForm(array $form, array &$form_state, $entity_type = NULL, $form['actions'] = array('#type' => 'actions'); $form['actions']['submit'] = array( '#type' => 'submit', - '#value' => $this->t('Add field'), + '#value' => $this->t('Save and continue'), '#button_type' => 'primary', );