function PoItem::setComment in Service Container 7
Same name and namespace in other branches
- 7.2 lib/Drupal/Component/Gettext/PoItem.php \Drupal\Component\Gettext\PoItem::setComment()
Set the comment of this translation.
Parameters
String $comment:
1 call to PoItem::setComment()
- PoItem::setFromArray in lib/
Drupal/ Component/ Gettext/ PoItem.php - Create the PoItem from a structured array.
File
- lib/
Drupal/ Component/ Gettext/ PoItem.php, line 170 - Contains \Drupal\Component\Gettext\PoItem.
Class
- PoItem
- PoItem handles one translation.
Namespace
Drupal\Component\GettextCode
function setComment($comment) {
$this->_comment = $comment;
}