t()
t( $message) : string
Returns the translation of a message.
Parameters
$message |
Returns
string —The string translation, or the original string if no translation exists.
The Horde_Translation_Handler interface defines the interface for any classes providing translations.
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.