private function PoItem::formatPlural

private PoItem::formatPlural()

Formats a plural translation.

File

core/lib/Drupal/Component/Gettext/PoItem.php, line 230

Class

PoItem
PoItem handles one translation.

Namespace

Drupal\Component\Gettext

Code

private function formatPlural() {
  $output = '';

  // Format source strings.
  $output .= 'msgid ' . $this->formatString($this->_source[0]);
  $output .= 'msgid_plural ' . $this->formatString($this->_source[1]);

  foreach ($this->_translation as $i => $trans) {
    if (isset($this->_translation[$i])) {
      $output .= 'msgstr[' . $i . '] ' . $this->formatString($trans);
    }
    else {
      $output .= 'msgstr[' . $i . '] ""' . "\n";
    }
  }

  return $output;
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Component!Gettext!PoItem.php/function/PoItem::formatPlural/8.1.x