diff --git a/core/modules/views/lib/Drupal/views/Plugin/Block/ViewsBlockBase.php b/core/modules/views/lib/Drupal/views/Plugin/Block/ViewsBlockBase.php index 5f32f15..b99c08d 100644 --- a/core/modules/views/lib/Drupal/views/Plugin/Block/ViewsBlockBase.php +++ b/core/modules/views/lib/Drupal/views/Plugin/Block/ViewsBlockBase.php @@ -154,10 +154,11 @@ public function buildConfigurationForm(array $form, array &$form_state) { ); if ($this->view->storage->access('edit') && \Drupal::moduleHandler()->moduleExists('views_ui')) { - $form['views_label']['#description'] = $this->t('Changing the title here, overrides the title created dynamically by view.', array('@url' => \Drupal::url('views_ui.edit', array('view' => $this->view->storage->id())))); + + $form['views_label']['#description'] = $this->t('Changing the title here means it cannot be dynamically altered anymore. (Try changing it directly in @name.)', array('@url' => \Drupal::url('views_ui.edit', array('view' => $this->view->storage->id(), '@name' => $this->view->storage->label())))); } else { - $form['views_label']['#description'] = $this->t('Changing the title here, overrides the title created dynamically by the view."'); + $form['views_label']['#description'] = $this->t('Changing the title here means it cannot be dynamically altered anymore.'); } return $form;