View Source Cldr.LanguageTag (Cldr v2.40.1)
Represents a language tag as defined in rfc5646 with extensions "u" and "t" as defined in BCP 47.
Language tags are used to help identify languages, whether spoken, written, signed, or otherwise signaled, for the purpose of communication. This includes constructed and artificial languages but excludes languages not intended primarily for human communication, such as programming languages.
Syntax
A language tag is composed from a sequence of one or more "subtags", each of which refines or narrows the range of language identified by the overall tag. Subtags, in turn, are a sequence of alphanumeric characters (letters and digits), distinguished and separated from other subtags in a tag by a hyphen ("-", [Unicode] U+002D).
There are different types of subtag, each of which is distinguished by length, position in the tag, and content: each subtag's type can be recognized solely by these features. This makes it possible to extract and assign some semantic information to the subtags, even if the specific subtag values are not recognized. Thus, a language tag processor need not have a list of valid tags or subtags (that is, a copy of some version of the IANA Language Subtag Registry) in order to perform common searching and matching operations. The only exceptions to this ability to infer meaning from subtag structure are the grandfathered tags listed in the productions 'regular' and 'irregular' below. These tags were registered under [RFC3066] and are a fixed list that can never change.
The syntax of the language tag in ABNF is:
Language-Tag = langtag ; normal language tags
/ privateuse ; private use tag
/ grandfathered ; grandfathered tags
langtag = language
["-" script]
["-" region]
*("-" variant)
*("-" extension)
["-" privateuse]
language = 2*3ALPHA ; shortest ISO 639 code
["-" extlang] ; sometimes followed by
; extended language subtags
/ 4ALPHA ; or reserved for future use
/ 5*8ALPHA ; or registered language subtag
extlang = 3ALPHA ; selected ISO 639 codes
*2("-" 3ALPHA) ; permanently reserved
script = 4ALPHA ; ISO 15924 code
region = 2ALPHA ; ISO 3166-1 code
/ 3DIGIT ; UN M.49 code
variant = 5*8alphanum ; registered variants
/ (DIGIT 3alphanum)
extension = singleton 1("-" (28alphanum))
; Single alphanumerics
; "x" reserved for private use
singleton = DIGIT ; 0 - 9
/ %x41-57 ; A - W
/ %x59-5A ; Y - Z
/ %x61-77 ; a - w
/ %x79-7A ; y - z
privateuse = "x" 1("-" (18alphanum))
grandfathered = irregular ; non-redundant tags registered
/ regular ; during the RFC 3066 era
irregular = "en-GB-oed" ; irregular tags do not match
/ "i-ami" ; the 'langtag' production and
/ "i-bnn" ; would not otherwise be
/ "i-default" ; considered 'well-formed'
/ "i-enochian" ; These tags are all valid,
/ "i-hak" ; but most are deprecated
/ "i-klingon" ; in favor of more modern
/ "i-lux" ; subtags or subtag
/ "i-mingo" ; combination
/ "i-navajo"
/ "i-pwn"
/ "i-tao"
/ "i-tay"
/ "i-tsu"
/ "sgn-BE-FR"
/ "sgn-BE-NL"
/ "sgn-CH-DE"
regular = "art-lojban" ; these tags match the 'langtag'
/ "cel-gaulish" ; production, but their subtags
/ "no-bok" ; are not extended language
/ "no-nyn" ; or variant subtags: their meaning
/ "zh-guoyu" ; is defined by their registration
/ "zh-hakka" ; and all of these are deprecated
/ "zh-min" ; in favor of a more modern
/ "zh-min-nan" ; subtag or sequence of subtags
/ "zh-xiang"
alphanum = (ALPHA / DIGIT) ; letters and numbers
All subtags have a maximum length of eight characters. Whitespace is not permitted in a language tag. There is a subtlety in the ABNF production 'variant': a variant starting with a digit has a minimum length of four characters, while those starting with a letter have a minimum length of five characters.
Unicode BCP 47 Extension type "u" - Locale
Extension | Description | Examples |
+-------+ | ------------------------------- | --------- |
ca | Calendar type | buddhist, chinese, gregory |
cf | Currency format style | standard, account |
co | Collation type | standard, search, phonetic, pinyin |
cu | Currency type | ISO4217 code like "USD", "EUR" |
fw | First day of the week identifier | sun, mon, tue, wed, ... |
hc | Hour cycle identifier | h12, h23, h11, h24 |
lb | Line break style identifier | strict, normal, loose |
lw | Word break identifier | normal, breakall, keepall, phrase |
ms | Measurement system identifier | metric, ussystem, uksystem |
mu | Measurement unit override | celsius, fahrenhe, kelvin which overrides the ms key |
nu | Number system identifier | arabext, armnlow, roman, tamldec |
rg | Region override | The value is a unicode_region_subtag for a regular region (not a macroregion), suffixed by "ZZZZ" |
sd | Subdivision identifier | A unicode_subdivision_id, which is a unicode_region_subtagconcatenated with a unicode_subdivision_suffix. |
ss | Break suppressions identifier | none, standard |
tz | Timezone identifier | Short identifiers defined in terms of a TZ time zone database |
va | Common variant type | POSIX style locale variant |
Unicode BCP 47 Extension type "t" - Transforms
Extension | Description |
+-------+ | ----------------------------------------- |
mo | Transform extension mechanism: to reference an authority or rules for a type of transformation |
s0 | Transform source: for non-languages/scripts, such as fullwidth-halfwidth conversion. |
d0 | Transform sdestination: for non-languages/scripts, such as fullwidth-halfwidth conversion. |
i0 | Input Method Engine transform |
k0 | Keyboard transform |
t0 | Machine Translation: Used to indicate content that has been machine translated |
h0 | Hybrid Locale Identifiers: h0 with the value 'hybrid' indicates that the -t- value is a language that is mixed into the main language tag to form a hybrid |
x0 | Private use transform |
Extensions are formatted by specifying keyword pairs after an extension
separator. The example de-DE-u-co-phonebk
specifies German as spoken in
Germany with a collation of phonebk
. Another example, "en-latn-AU-u-cf-account"
represents English as spoken in Australia, with the number system "latn" but
formatting currencies with the "accounting" style.
Summary
Functions
Parse a locale name into a t:Cldr.LanguageTag
struct.
Parse a locale name into a Cldr.LanguageTag
struct and raises on error
Reconstitute a textual language tag from a LanguageTag that is suitable to pass to a collator.
Types
@type t() :: %Cldr.LanguageTag{ backend: Cldr.backend(), canonical_locale_name: String.t(), cldr_locale_name: Cldr.Locale.locale_name(), extensions: map(), gettext_locale_name: String.t() | nil, language: Cldr.Locale.language(), language_subtags: [String.t()], language_variants: [String.t()], locale: Cldr.LanguageTag.U.t() | %{}, private_use: [String.t()], rbnf_locale_name: Cldr.Locale.locale_name(), requested_locale_name: String.t(), script: Cldr.Locale.script(), territory: Cldr.Locale.territory_code(), transform: Cldr.LanguageTag.T.t() | %{} }
Functions
Parse a locale name into a t:Cldr.LanguageTag
struct.
Arguments
locale_name
is any BCP 47 string.
Returns
{:ok, t:Cldr.LanguageTag}
or{:error, reason}
Parse a locale name into a Cldr.LanguageTag
struct and raises on error
Arguments
locale_name
is any BCP 47 string.
Returns
t:Cldr.LanguageTag
orraises an exception
Reconstitute a textual language tag from a LanguageTag that is suitable to pass to a collator.
Note that this function will always calculate the
canonical locale name. Kernel.to_string/1
will
return the pre-calculated canonical locale name and
is to be preferred.
Arguments
locale
is aCldr.LanguageTag
struct returned byCldr.Locale.new!/2
omit_singular_script?
is a boolean indicating if the script name should be omitted if the landuage_tag territory has only this one script. The default isfalse
.
Returns
- A formatted string representation of the language tag that is also
parseable back into a
Cldr.LanguageTag.t()
Examples
iex> {:ok, locale} = Cldr.validate_locale "en-US", MyApp.Cldr
iex> Cldr.LanguageTag.to_string(locale)
"en-US"
iex> {:ok, locale} = Cldr.validate_locale "en-US-u-co-phonebk-nu-arab", MyApp.Cldr
iex> Cldr.LanguageTag.to_string(locale)
"en-US-u-co-phonebk-nu-arab"