NOOP_Translations::translate_plural( string $singular, string $plural, int $count, string $context = null )


Parameters

$singular string Required
$plural string Required
$count int Required
$context string Optional

Default: null


Top ↑

Source

File: wp-includes/pomo/translations.php. View all references

public function translate_plural( $singular, $plural, $count, $context = null ) {
	return 1 === (int) $count ? $singular : $plural;
}

Top ↑

User Contributed Notes

You must log in before being able to contribute a note or feedback.