protected function CommentTranslationController::entityFormTitle

Overrides EntityTranslationController::entityFormTitle().

Overrides EntityTranslationController::entityFormTitle

File

drupal/core/modules/comment/lib/Drupal/comment/CommentTranslationController.php, line 22
Definition of Drupal\comment\CommentTranslationController.

Class

CommentTranslationController
Defines the translation controller class for comments.

Namespace

Drupal\comment

Code

protected function entityFormTitle(EntityInterface $entity) {
  return t('Edit comment @subject', array(
    '@subject' => $entity
      ->label(),
  ));
}