$current
$current : \Gettext\TranslatorInterface
$current : \Gettext\TranslatorInterface
register() : \Gettext\TranslatorInterface|null
Register this translator as global, to use with the gettext functions __(), p__(), etc.
Returns the previous translator if exists.
loadTranslations(\Gettext\Translations|string|array $translations) : self
Loads translation from a Translations instance, a file on an array.
\Gettext\Translations|string|array | $translations |
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));
string | $code | the terse if string |
boolean | $inner | If inner is true we wrap it in brackets |
A formatted terse If that PHP can work with.