13 public function register();
33 public function ngettext($original, $plural, $value);
57 public function npgettext($context, $original, $plural, $value);
if(!array_key_exists('domain', $_REQUEST)) $domain
An exception for terminatinating execution or to throw for unit testing.
Interface used by all translators.
pgettext($context, $original)
Gets a translation checking the context.
ngettext($original, $plural, $value)
Gets a translation checking the plural form.
npgettext($context, $original, $plural, $value)
Gets a translation checking the context and the plural form.
gettext($original)
Gets a translation using the original string.
dngettext($domain, $original, $plural, $value)
Gets a translation checking the domain and the plural form.
dgettext($domain, $original)
Gets a translation checking the domain.
dpgettext($domain, $context, $original)
Gets a translation checking the domain and context.
dnpgettext($domain, $context, $original, $plural, $value)
Gets a translation checking the domain, the context and the plural form.