\GettextTranslatorInterface

Interface used by all translators.

Summary

Methods
Constants
register()
noop()
gettext()
ngettext()
dngettext()
npgettext()
pgettext()
dgettext()
dpgettext()
dnpgettext()
No constants found
No protected methods found
N/A
No private methods found
N/A

Methods

register()

register() : \Gettext\TranslatorInterface|null

Register this translator as global, to use with the gettext functions __(), p__(), etc.

Returns the previous translator if exists.

Returns

\Gettext\TranslatorInterface|null

noop()

noop(string  $original) : string

Noop, marks the string for translation but returns it unchanged.

Parameters

string $original

Returns

string

gettext()

gettext(string  $original) : string

Gets a translation using the original string.

Parameters

string $original

Returns

string

ngettext()

ngettext(string  $original, string  $plural, string  $value) : string

Gets a translation checking the plural form.

Parameters

string $original
string $plural
string $value

Returns

string

dngettext()

dngettext(string  $domain, string  $original, string  $plural, string  $value) : string

Gets a translation checking the domain and the plural form.

Parameters

string $domain
string $original
string $plural
string $value

Returns

string

npgettext()

npgettext(string  $context, string  $original, string  $plural, string  $value) : string

Gets a translation checking the context and the plural form.

Parameters

string $context
string $original
string $plural
string $value

Returns

string

pgettext()

pgettext(string  $context, string  $original) : string

Gets a translation checking the context.

Parameters

string $context
string $original

Returns

string

dgettext()

dgettext(string  $domain, string  $original) : string

Gets a translation checking the domain.

Parameters

string $domain
string $original

Returns

string

dpgettext()

dpgettext(string  $domain, string  $context, string  $original) : string

Gets a translation checking the domain and context.

Parameters

string $domain
string $context
string $original

Returns

string

dnpgettext()

dnpgettext(string  $domain, string  $context, string  $original, string  $plural, string  $value) 

Gets a translation checking the domain, the context and the plural form.

Parameters

string $domain
string $context
string $original
string $plural
string $value