summaryrefslogtreecommitdiffstats
path: root/vendor/icu_locid/tests/fixtures/langid.json
blob: 31740d99aaceb13cf7e316a327d060b7ff6ce87b (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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
[
  {
    "input": "en",
    "output": {
      "type": "LanguageIdentifier",
      "language": "en"
    }
  },
  {
    "input": "lij",
    "output": {
      "type": "LanguageIdentifier",
      "language": "lij"
    }
  },
  {
    "input": "en-Latn",
    "output": { 
      "type": "LanguageIdentifier",
      "language": "en",
      "script": "Latn"
    }
  },
  {
    "input": "lij-Arab",
    "output": { 
      "type": "LanguageIdentifier",
      "language": "lij",
      "script": "Arab"
    }
  },
  {
    "input": "en-Latn-US",
    "output": { 
      "type": "LanguageIdentifier",
      "language": "en",
      "script": "Latn",
      "region": "US"
    }
  },
  {
    "input": "lij-Arab-FA",
    "output": { 
      "type": "LanguageIdentifier",
      "language": "lij",
      "script": "Arab",
      "region": "FA"
    }
  },
  {
    "input": "en-Latn-US-windows",
    "output": { 
      "type": "LanguageIdentifier",
      "language": "en",
      "script": "Latn",
      "region": "US",
      "variants": ["windows"]
    }
  },
  {
    "input": "lij-Arab-FA-linux",
    "output": { 
      "type": "LanguageIdentifier",
      "language": "lij",
      "script": "Arab",
      "region": "FA",
      "variants": ["linux"]
    }
  },
  {
    "input": "lij-Arab-FA-linux-nedis",
    "output": { 
      "type": "LanguageIdentifier",
      "language": "lij",
      "script": "Arab",
      "region": "FA",
      "variants": ["linux", "nedis"]
    }
  },
  {
    "input": "EN-latn-us",
    "output": {
      "type": "LanguageIdentifier",
      "language": "en",
      "script": "Latn",
      "region": "US"
    }
  },
  {
    "input": "sl-nedis",
    "output": {
      "type": "LanguageIdentifier",
      "language": "sl",
      "variants": ["nedis"]
    }
  },
  {
    "input": "de-CH-1996",
    "output": {
      "type": "LanguageIdentifier",
      "language": "de",
      "region": "CH",
      "variants": ["1996"]
    }
  },
  {
    "input": "sr-Latn",
    "output": {
      "type": "LanguageIdentifier",
      "language": "sr",
      "script": "Latn"
    }
  },
  {
    "input": "es-419",
    "output": {
      "type": "LanguageIdentifier",
      "language": "es",
      "region": "419"
    }
  },
  {
    "input": "und-Latn-US",
    "output": {
      "type": "LanguageIdentifier",
      "script": "Latn",
      "region": "US"
    }
  },
  {
    "input": "und",
    "output": {
      "type": "LanguageIdentifier"
    }
  },
  {
    "input": "und-Latn",
    "output": {
      "type": "LanguageIdentifier",
      "script": "Latn"
    }
  },
  {
    "input": "pl-macos-Windows-nedis-aRabic",
    "output": {
      "type": "LanguageIdentifier",
      "language": "pl",
      "variants": ["arabic", "macos", "nedis", "windows"]
    }
  },
  {
    "input": "und-Latn-macos",
    "output": {
      "type": "LanguageIdentifier",
      "script": "Latn",
      "variants": ["macos"]
    }
  },
  {
    "input": "und-Latn-312",
    "output": {
      "type": "LanguageIdentifier",
      "script": "Latn",
      "region": "312"
    }
  }
]