private function PoItem::formatPlural in Localization update 7.2
Formats a plural translation.
Return value
string Gettext formatted plural translation.
1 call to PoItem::formatPlural()
- PoItem::formatItem in includes/
gettext/ PoItem.php - Format the POItem as a string.
File
- includes/
gettext/ PoItem.php, line 268 - Definition of Drupal\Component\Gettext\PoItem.
Class
- PoItem
- PoItem handles one translation.
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;
}