You are here

function PoHeader::getPluralForms in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/lib/Drupal/Component/Gettext/PoHeader.php \Drupal\Component\Gettext\PoHeader::getPluralForms()

Gets the plural form.

Return value

string Plural form component from the header, for example: 'nplurals=2; plural=(n > 1);'.

File

core/lib/Drupal/Component/Gettext/PoHeader.php, line 93
Contains \Drupal\Component\Gettext\PoHeader.

Class

PoHeader
Gettext PO header handler.

Namespace

Drupal\Component\Gettext

Code

function getPluralForms() {
  return $this->_pluralForms;
}