diff --git a/core/modules/views/src/Plugin/views/field/FieldPluginBase.php b/core/modules/views/src/Plugin/views/field/FieldPluginBase.php index 2a1c4fc8508327a61a5ff70503e64a302549cdd2..3a30b1ee779fc1cf13da35acc200f0caf6a26d4f 100644 --- a/core/modules/views/src/Plugin/views/field/FieldPluginBase.php +++ b/core/modules/views/src/Plugin/views/field/FieldPluginBase.php @@ -605,7 +605,7 @@ public function buildOptionsForm(&$form, FormStateInterface $form_state) { $form['element_class_enable'] = [ '#type' => 'checkbox', - '#title' => $this->t('Create a CSS class'), + '#title' => $this->t('Add HTML class'), '#states' => [ 'visible' => [ ':input[name="options[element_type_enable]"]' => ['checked' => TRUE], @@ -649,7 +649,7 @@ public function buildOptionsForm(&$form, FormStateInterface $form_state) { ]; $form['element_label_class_enable'] = [ '#type' => 'checkbox', - '#title' => $this->t('Create a CSS class'), + '#title' => $this->t('Add HTML class'), '#states' => [ 'visible' => [ ':input[name="options[element_label_type_enable]"]' => ['checked' => TRUE], @@ -694,7 +694,7 @@ public function buildOptionsForm(&$form, FormStateInterface $form_state) { $form['element_wrapper_class_enable'] = [ '#type' => 'checkbox', - '#title' => $this->t('Create a CSS class'), + '#title' => $this->t('Add HTML class'), '#states' => [ 'visible' => [ ':input[name="options[element_wrapper_type_enable]"]' => ['checked' => TRUE],