\Gettext\LanguagesCldrData

Holds the CLDR data.

Summary

Methods
Properties
Constants
getLanguageNames()
getTerritoryNames()
getScriptNames()
getPlurals()
getSupersededLanguages()
getLanguageInfo()
$categories
OTHER_CATEGORY
No protected methods found
No protected properties found
N/A
getData()
$data
$plurals
N/A

Constants

OTHER_CATEGORY

OTHER_CATEGORY

Super-special plural category: this should always be present for any language.

Properties

$categories

$categories : array<mixed,string>

The list of the plural categories, sorted from 'zero' to 'other'.

Type

array<mixed,string>

$data

$data : array

The loaded CLDR data

Type

array

$plurals

$plurals : array

Type

array

Methods

getLanguageNames()

getLanguageNames() : array<mixed,string>

Returns a dictionary containing the language names.

The keys are the language identifiers. The values are the language names in US English.

Returns

array<mixed,string>

getTerritoryNames()

getTerritoryNames() : array<mixed,string>

Return a dictionary containing the territory names (in US English).

The keys are the territory identifiers. The values are the territory names in US English.

Returns

array<mixed,string>

getScriptNames()

getScriptNames(boolean  $standAlone) : array<mixed,string>

Return a dictionary containing the script names (in US English).

The keys are the script identifiers. The values are the script names in US English.

Parameters

boolean $standAlone

Set to true to retrieve the stand-alone script names, false otherwise.

Returns

array<mixed,string>

getPlurals()

getPlurals() 

A dictionary containing the plural rules.

The keys are the language identifiers. The values are arrays whose keys are the CLDR category names and the values are the CLDR category definition.

Examples

English key-value pair is somethink like this: <code><pre> "en": { "pluralRule-count-one": "i = 1 and v = 0 @integer 1", "pluralRule-count-other": " @integer 0, 2~16, 100, 1000, 10000, 100000, 1000000, … @decimal 0.0~1.5, 10.0, 100.0, 1000.0, 10000.0, 100000.0, 1000000.0, …" } </pre></code>
** File not found : The **

getSupersededLanguages()

getSupersededLanguages() : array

Return a list of superseded language codes.

Returns

array —

Keys are the former language codes, values are the new language/locale codes.

getLanguageInfo()

getLanguageInfo(string  $id) : array|null

Retrieve the name of a language, as well as if a language code is deprecated in favor of another language code.

Parameters

string $id

The language identifier.

Returns

array|null —

Returns an array with the keys 'id' (normalized), 'name', 'supersededBy' (optional), 'territory' (optional), 'script' (optional), 'baseLanguage' (optional), 'categories'. If $id is not valid returns null.

getData()

getData(string  $key) 

Returns the loaded CLDR data.

Parameters

string $key

Can be 'languages', 'territories', 'plurals', 'supersededLanguages', 'scripts', 'standAloneScripts'