\Gettext\LanguagesLanguage

Main class to convert the plural rules of a language from CLDR to gettext.

Summary

Methods
Properties
Constants
getAll()
getById()
getUSAsciiClone()
$id
$name
$supersededBy
$script
$territory
$baseLanguage
$categories
$formula
No constants found
No protected methods found
No protected properties found
N/A
__construct()
checkAlwaysTrueCategories()
checkAlwaysFalseCategories()
checkAllCategoriesWithExamples()
buildFormula()
reverseFormula()
reduceFormula()
asciifier()
No private properties found
N/A

Properties

$id

$id : string

The language ID.

Type

string

$name

$name : string

The language name.

Type

string

$supersededBy

$supersededBy : null|string

If this language is deprecated: the gettext code of the new language.

Type

null|string

$script

$script : string|null

The script name.

Type

string|null

$territory

$territory : string|null

The territory name.

Type

string|null

$baseLanguage

$baseLanguage : string|null

The name of the base language

Type

string|null

$categories

$categories : array<mixed,\Gettext\Languages\Category>

The list of categories.

Type

array<mixed,\Gettext\Languages\Category>

$formula

$formula : string

The gettext formula to decide which category should be applied.

Type

string

Methods

getAll()

getAll() : array<mixed,\Gettext\Languages\Language>

Return a list of all languages available.

Throws

\Exception

Returns

array<mixed,\Gettext\Languages\Language>

getById()

getById(string  $id) : \Gettext\Languages\Language|null

Return a Language instance given the language id

Parameters

string $id

Returns

\Gettext\Languages\Language|null

getUSAsciiClone()

getUSAsciiClone() : \Gettext\Languages\Language

Returns a clone of this instance with all the strings to US-ASCII.

Returns

\Gettext\Languages\Language

__construct()

__construct(array  $info) 

Initialize the instance and parse the language code.

Parameters

array $info

The result of CldrData::getLanguageInfo()

Throws

\Exception

Throws an Exception if $fullId is not valid.

checkAlwaysTrueCategories()

checkAlwaysTrueCategories() 

Let's look for categories that will always occur.

This because with decimals (CLDR) we may have more cases, with integers (gettext) we have just one case. If we found that (single) category we reduce the categories to that one only.

checkAlwaysFalseCategories()

checkAlwaysFalseCategories() 

Let's look for categories that will never occur.

This because with decimals (CLDR) we may have more cases, with integers (gettext) we have some less cases. If we found those categories we strip them out.

checkAllCategoriesWithExamples()

checkAllCategoriesWithExamples() 

Let's look for categories that don't have examples.

This because with decimals (CLDR) we may have more cases, with integers (gettext) we have some less cases. If we found those categories, we check that they never occur and we strip them out.

Throws

\Exception

buildFormula()

buildFormula() : string

Build the formula starting from the currently defined categories.

Returns

string

reverseFormula()

reverseFormula(string  $formula) : string

Reverse a formula.

Parameters

string $formula

Throws

\Exception

Returns

string

reduceFormula()

reduceFormula(string  $formula) : string

Reduce some excessively complex formulas.

Parameters

string $formula

Returns

string

asciifier()

asciifier(mixed  $value) 

Take one variable and, if it's a string, we transliterate it to US-ASCII.

Parameters

mixed $value

The variable to work on.

Throws

\Exception