Properties

$domain

$domain : 

Type

$dictionary

$dictionary : 

Type

$plurals

$plurals : 

Type

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

loadTranslations()

loadTranslations(\Gettext\Translations|string|array  $translations) : self

Loads translation from a Translations instance, a file on an array.

Parameters

\Gettext\Translations|string|array $translations

Returns

self

defaultDomain()

defaultDomain(string  $domain) : self

Set the default domain.

Parameters

string $domain

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

addTranslations()

addTranslations(array  $translations) 

Set new translations to the dictionary.

Parameters

array $translations

getTranslation()

getTranslation(string  $domain, string  $context, string  $original) : string|false

Search and returns a translation.

Parameters

string $domain
string $context
string $original

Returns

string|false

getPluralIndex()

getPluralIndex(string  $domain, string  $n, boolean  $fallback) : integer

Executes the plural decision code given the number to decide which plural version to take.

Parameters

string $domain
string $n
boolean $fallback

set to true to get fallback plural index

Returns

integer

fixTerseIfs()

fixTerseIfs(string  $code, boolean  $inner = false) : string

This function will recursively wrap failure states in brackets if they contain a nested terse if.

This because PHP can not handle nested terse if's unless they are wrapped in brackets.

This code probably only works for the gettext plural decision codes.

return ($n==1 ? 0 : $n%10>=2 && $n%10<=4 && ($n%100<10 || $n%100>=20) ? 1 : 2); becomes return ($n==1 ? 0 : ($n%10>=2 && $n%10<=4 && ($n%100<10 || $n%100>=20) ? 1 : 2));

Parameters

string $code

the terse if string

boolean $inner

If inner is true we wrap it in brackets

Returns

string —

A formatted terse If that PHP can work with.