You are here

public function PoItem::setComment in Localization update 7.2

Set the comment of this translation.

Parameters

string $comment: The translation comment.

1 call to PoItem::setComment()
PoItem::setFromArray in includes/gettext/PoItem.php
Create the PoItem from a structured array.

File

includes/gettext/PoItem.php, line 196
Definition of Drupal\Component\Gettext\PoItem.

Class

PoItem
PoItem handles one translation.

Code

public function setComment($comment) {
  $this->_comment = $comment;
}