\GettextGettextTranslator

Summary

Methods
Properties
Constants
noop()
register()
includeFunctions()
__construct()
setLanguage()
loadDomain()
gettext()
ngettext()
dngettext()
npgettext()
pgettext()
dgettext()
dpgettext()
dnpgettext()
$current
No constants found
No protected methods found
No protected properties found
N/A
No private methods found
No private properties found
N/A

Properties

Methods

noop()

noop(string  $original) : string

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

Parameters

string $original

Returns

string

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

includeFunctions()

includeFunctions() 

Include the gettext functions

__construct()

__construct(string  $language = null) 

Constructor. Detects the current language using the environment variables.

Parameters

string $language

setLanguage()

setLanguage(string  $language, integer|null  $category = null) : self

Define the current locale.

Parameters

string $language
integer|null $category

Returns

self

loadDomain()

loadDomain(string  $domain, string  $path = null, boolean  $default = true) : self

Loads a gettext domain.

Parameters

string $domain
string $path
boolean $default

Returns

self

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