public function PoItem::setPlural in Drupal 10
Same name and namespace in other branches
- 8 core/lib/Drupal/Component/Gettext/PoItem.php \Drupal\Component\Gettext\PoItem::setPlural()
- 9 core/lib/Drupal/Component/Gettext/PoItem.php \Drupal\Component\Gettext\PoItem::setPlural()
Set if the translation has plural values.
Parameters
bool $plural: TRUE, if the translation has plural values. FALSE otherwise.
File
- core/
lib/ Drupal/ Component/ Gettext/ PoItem.php, line 154
Class
- PoItem
- PoItem handles one translation.
Namespace
Drupal\Component\GettextCode
public function setPlural($plural) {
$this->plural = $plural;
}