\Gettext\LanguagesFormulaConverter

A helper class to convert a CLDR formula to a gettext formula.

Summary

Methods
Properties
Constants
convertFormula()
No public properties found
No constants found
No protected methods found
No protected properties found
N/A
convertAtom()
expandAtom()
No private properties found
N/A

Methods

convertFormula()

convertFormula(string  $cldrFormula) : boolean|string

Converts a formula from the CLDR representation to the gettext representation.

Parameters

string $cldrFormula

The CLDR formula to convert.

Throws

\Exception

Returns

boolean|string —

Returns true if the gettext will always evaluate to true, false if gettext will always evaluate to false, return the gettext formula otherwise.

convertAtom()

convertAtom(string  $cldrAtom) : boolean|string

Converts an atomic part of the CLDR formula to its gettext representation.

Parameters

string $cldrAtom

The CLDR formula atom to convert.

Throws

\Exception

Returns

boolean|string —

Returns true if the gettext will always evaluate to true, false if gettext will always evaluate to false, return the gettext formula otherwise.

expandAtom()

expandAtom(string  $atom) : string

Expands an atom containing a range (for instance: 'n == 1,3.

.5').

Parameters

string $atom

Throws

\Exception

Returns

string