Provide a more useful title to improve the accessibility.
Overrides BulkFormBase::views_form
public function views_form(&$form, &$form_state) {
parent::views_form($form, $form_state);
if (!empty($this->view->result)) {
foreach ($this->view->result as $row_index => $result) {
$account = $result->_entity;
if ($account instanceof UserInterface) {
$form[$this->options['id']][$row_index]['#title'] = t('Update the user %name', array(
'%name' => $account
->label(),
));
}
}
}
}