$_domain
$_domain : string
The translation domain, e.g. package name.
The Horde_Translation_Handler_Gettext provides translations through the gettext extension, but fails gracefully if gettext is not installed.
ngettext(string $singular, string $plural, integer $number) : string
Returns the plural translation of a message.
string | $singular | The singular version to translate. |
string | $plural | The plural version to translate. |
integer | $number | The number that determines singular vs. plural. |
The string translation, or the original string if no translation exists.