blob: b24d7083700c4107412c99597fca23e02aa45f72 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
import type { LocaleEntry } from './definitions';
/**
* Metadata for pre-built locales.
*/
export type PreBuiltMetadataDefinition = {
/**
* The English name of the language (and the specific country, if defined).
*/
title: string;
/**
* The full code of the locale, including the country code if applicable.
*/
code: string;
/**
* The endonym (native name) of the language (and the specific country, if defined).
*
* @see https://en.wikipedia.org/wiki/List_of_countries_and_dependencies_and_their_capitals_in_native_languages
*/
endonym: string;
/**
* The ISO 639-1 code of the language.
*
* @see https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes
*/
language: string;
/**
* The specific variant of the language. This usually refers to a dialect or slang.
*/
variant?: string;
/**
* The direction of the language, either 'ltr' (left to right) or 'rtl' (right to left).
*/
dir: 'ltr' | 'rtl';
/**
* The ISO 15924 code of the script.
*
* @see https://en.wikipedia.org/wiki/ISO_15924
*/
script: string;
};
/**
* Metadata for pre-built locales for a specific country.
*/
export type PreBuiltMetadataDefinitionForCountry =
PreBuiltMetadataDefinition & {
/**
* The ISO 3166-1 alpha-2 code of the country.
*
* @see https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2
*/
country: string;
};
/**
* Metadata for the current locale.
*/
export type MetadataDefinition =
LocaleEntry<PreBuiltMetadataDefinitionForCountry>;
|