You are here

protected function EntityTranslationCommentHandler::entityFormTitle in Entity Translation 7

Overrides EntityTranslationDefaultHandler::entityFormTitle

See also

EntityTranslationDefaultHandler::entityFormTitle()

File

includes/translation.handler.comment.inc, line 37
Comment translation handler for the entity translation module.

Class

EntityTranslationCommentHandler
Comment translation handler.

Code

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