diff -u b/core/modules/contact/src/CategoryListBuilder.php b/core/modules/contact/src/CategoryListBuilder.php --- b/core/modules/contact/src/CategoryListBuilder.php +++ b/core/modules/contact/src/CategoryListBuilder.php @@ -32,13 +32,14 @@ * {@inheritdoc} */ public function buildRow(EntityInterface $entity) { - $row['category'] = $this->l($this->getLabel($entity),'contact.site_page_category', array('contact_category' => $entity->id())); // Special case the personal category. if ($entity->id() == 'personal') { + $row['category'] = $this->getLabel($entity); $row['recipients'] = t('Selected user'); $row['selected'] = t('No'); } else { + $row['category'] = $this->l($this->getLabel($entity),'contact.site_page_category', array('contact_category' => $entity->id())); $row['recipients'] = String::checkPlain(implode(', ', $entity->recipients)); $default_category = \Drupal::config('contact.settings')->get('default_category'); $row['selected'] = ($default_category == $entity->id() ? t('Yes') : t('No'));