You are here

public function PoItem::getTextgroup in Localization update 7.2

Get the translation group of this translation.

Return value

string The translation text group.

File

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

Class

PoItem
PoItem handles one translation.

Code

public function getTextgroup() {
  return empty($this->_textgroup) ? 'default' : $this->_textgroup;
}