$current
$current : \Gettext\TranslatorInterface
A translator, that allows customized translations through the configuration class.
$current : \Gettext\TranslatorInterface
$env : \OpenEstate\PhpExport\Environment
Export environment.
loadTranslations(\Gettext\Translations|string|array $translations) : self
Loads translation from a Translations instance, a file on an array.
\Gettext\Translations|string|array | $translations |
register() : \Gettext\TranslatorInterface|null
Register this translator as global, to use with the gettext functions __(), p__(), etc.
Returns the previous translator if exists.
__construct(\OpenEstate\PhpExport\Environment $env, string|null $languageCode = null)
Translator constructor.
\OpenEstate\PhpExport\Environment | $env | export environment |
string|null | $languageCode | custom ISO language code |
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.