southpaw 0.2.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (169) hide show
  1. package/README.md +51 -0
  2. package/api/client.ts +83 -0
  3. package/api/helpers/fs.ts +98 -0
  4. package/api/helpers/stream.ts +6 -0
  5. package/api/index.ts +50 -0
  6. package/api/server.ts +566 -0
  7. package/constants/fonts.ts +1583 -0
  8. package/constants/icons.ts +2124 -0
  9. package/constants/langs.ts +2592 -0
  10. package/constants/ssr-loading.tsx +17 -0
  11. package/contexts/dev.tsx +124 -0
  12. package/hooks/useDebounceCb.ts +21 -0
  13. package/modules/app.tsx +102 -0
  14. package/modules/behaviors.ts +161 -0
  15. package/modules/component.tsx +483 -0
  16. package/modules/config/index.ts +8 -0
  17. package/modules/database.ts +25 -0
  18. package/modules/document.tsx +23 -0
  19. package/modules/error.tsx +16 -0
  20. package/modules/page/autozoom.tsx +92 -0
  21. package/modules/page/browser.tsx +166 -0
  22. package/modules/page/index.tsx +327 -0
  23. package/modules/page/insert-modal.tsx +225 -0
  24. package/modules/page/inspect/index.tsx +237 -0
  25. package/modules/page/inspect/wrapper.tsx +88 -0
  26. package/modules/page/knobs/action.tsx +58 -0
  27. package/modules/page/knobs/color.tsx +78 -0
  28. package/modules/page/knobs/helpers.ts +71 -0
  29. package/modules/page/knobs/icon.tsx +85 -0
  30. package/modules/page/knobs/linker.tsx +188 -0
  31. package/modules/page/knobs/list-json.tsx +149 -0
  32. package/modules/page/knobs/list-text.tsx +129 -0
  33. package/modules/page/knobs/number.tsx +84 -0
  34. package/modules/page/knobs/segmented.tsx +81 -0
  35. package/modules/page/knobs/select.tsx +89 -0
  36. package/modules/page/knobs/size.tsx +106 -0
  37. package/modules/page/knobs/switch.tsx +75 -0
  38. package/modules/page/knobs/text.tsx +93 -0
  39. package/modules/page/left-tabs.tsx +36 -0
  40. package/modules/page/right-tabs.tsx +31 -0
  41. package/modules/page/seo.tsx +69 -0
  42. package/modules/page/tree.tsx +860 -0
  43. package/modules/state.ts +787 -0
  44. package/modules/store.ts +37 -0
  45. package/modules/theme.ts +105 -0
  46. package/modules/translations.ts +15 -0
  47. package/package.json +68 -0
  48. package/scripts/bin.js +607 -0
  49. package/scripts/test.js +145 -0
  50. package/themes/base.tsx +8962 -0
  51. package/themes/index.ts +4 -0
  52. package/themes/m2.ts +39 -0
  53. package/themes/newspaper.ts +39 -0
  54. package/types/api.ts +57 -0
  55. package/types/fiber_node.ts +69 -0
  56. package/types/react_element.ts +14 -0
  57. package/ui/accordion.tsx +70 -0
  58. package/ui/actionicon.tsx +41 -0
  59. package/ui/affix.tsx +14 -0
  60. package/ui/alert.tsx +37 -0
  61. package/ui/anchor.tsx +52 -0
  62. package/ui/arrow.tsx +116 -0
  63. package/ui/aspectratio.tsx +21 -0
  64. package/ui/autocomplete.tsx +34 -0
  65. package/ui/avatar.tsx +36 -0
  66. package/ui/backgroundimage.tsx +16 -0
  67. package/ui/badge.tsx +28 -0
  68. package/ui/blockquote.tsx +15 -0
  69. package/ui/blocks/faq.tsx +145 -0
  70. package/ui/blocks/features.tsx +167 -0
  71. package/ui/blocks/footer.tsx +182 -0
  72. package/ui/blocks/herobanner.tsx +391 -0
  73. package/ui/blocks/index.ts +44 -0
  74. package/ui/blocks/leftnav.tsx +141 -0
  75. package/ui/blocks/pricing.tsx +210 -0
  76. package/ui/blocks/testimonials.tsx +149 -0
  77. package/ui/blocks/uidocs.tsx +1429 -0
  78. package/ui/box.tsx +27 -0
  79. package/ui/breadcrumbs.tsx +33 -0
  80. package/ui/burger.tsx +23 -0
  81. package/ui/button.tsx +85 -0
  82. package/ui/card.tsx +28 -0
  83. package/ui/center.tsx +26 -0
  84. package/ui/checkbox.tsx +35 -0
  85. package/ui/chip.tsx +32 -0
  86. package/ui/closebutton.tsx +15 -0
  87. package/ui/code.tsx +104 -0
  88. package/ui/collapse.tsx +16 -0
  89. package/ui/colorinput.tsx +32 -0
  90. package/ui/colorpicker.tsx +26 -0
  91. package/ui/colorswatch.tsx +17 -0
  92. package/ui/combobox.tsx +80 -0
  93. package/ui/container.tsx +27 -0
  94. package/ui/dialog.tsx +15 -0
  95. package/ui/divider.tsx +58 -0
  96. package/ui/drawer.tsx +28 -0
  97. package/ui/fieldset.tsx +15 -0
  98. package/ui/filebutton.tsx +23 -0
  99. package/ui/fileinput.tsx +36 -0
  100. package/ui/flex.tsx +139 -0
  101. package/ui/focustrap.tsx +15 -0
  102. package/ui/form.tsx +26 -0
  103. package/ui/grid.tsx +69 -0
  104. package/ui/highlight.tsx +15 -0
  105. package/ui/hoverable.tsx +66 -0
  106. package/ui/hovercard.tsx +45 -0
  107. package/ui/icon.tsx +76 -0
  108. package/ui/image.tsx +32 -0
  109. package/ui/index.ts +1355 -0
  110. package/ui/indicator.tsx +42 -0
  111. package/ui/infobox.tsx +200 -0
  112. package/ui/input.tsx +18 -0
  113. package/ui/inviewport.tsx +23 -0
  114. package/ui/jsoninput.tsx +35 -0
  115. package/ui/kbd.tsx +20 -0
  116. package/ui/list.tsx +33 -0
  117. package/ui/loader.tsx +26 -0
  118. package/ui/loadingoverlay.tsx +22 -0
  119. package/ui/mark.tsx +15 -0
  120. package/ui/menu.tsx +89 -0
  121. package/ui/modal.tsx +27 -0
  122. package/ui/multiselect.tsx +42 -0
  123. package/ui/nativeselect.tsx +17 -0
  124. package/ui/navlink.tsx +40 -0
  125. package/ui/notification.tsx +25 -0
  126. package/ui/numberformatter.tsx +15 -0
  127. package/ui/numberinput.tsx +37 -0
  128. package/ui/overlay.tsx +15 -0
  129. package/ui/pagination.tsx +21 -0
  130. package/ui/paper.tsx +33 -0
  131. package/ui/passwordinput.tsx +36 -0
  132. package/ui/pill.tsx +17 -0
  133. package/ui/pillsinput.tsx +37 -0
  134. package/ui/pininput.tsx +30 -0
  135. package/ui/popover.tsx +43 -0
  136. package/ui/portal.tsx +15 -0
  137. package/ui/progress.tsx +49 -0
  138. package/ui/props.ts +91 -0
  139. package/ui/propsDef.ts +38 -0
  140. package/ui/radio.tsx +30 -0
  141. package/ui/rating.tsx +25 -0
  142. package/ui/ringprogress.tsx +17 -0
  143. package/ui/scrollarea.tsx +27 -0
  144. package/ui/segmentedcontrol.tsx +38 -0
  145. package/ui/select.tsx +43 -0
  146. package/ui/simplegrid.tsx +23 -0
  147. package/ui/skeleton.tsx +15 -0
  148. package/ui/slider.tsx +31 -0
  149. package/ui/space.tsx +19 -0
  150. package/ui/spoiler.tsx +23 -0
  151. package/ui/stepper.tsx +63 -0
  152. package/ui/switch.tsx +29 -0
  153. package/ui/table.tsx +93 -0
  154. package/ui/tabs.tsx +80 -0
  155. package/ui/tagsinput.tsx +19 -0
  156. package/ui/terminal.tsx +44 -0
  157. package/ui/text.tsx +168 -0
  158. package/ui/textarea.tsx +36 -0
  159. package/ui/textinput.tsx +34 -0
  160. package/ui/timeline.tsx +30 -0
  161. package/ui/title.tsx +42 -0
  162. package/ui/tooltip.tsx +32 -0
  163. package/ui/transition.tsx +21 -0
  164. package/ui/tree.tsx +42 -0
  165. package/ui/typographystylesprovider.tsx +20 -0
  166. package/ui/unstyledbutton.tsx +18 -0
  167. package/ui/video.tsx +16 -0
  168. package/ui/visuallyhidden.tsx +15 -0
  169. package/utils/index.ts +76 -0
@@ -0,0 +1,2592 @@
1
+ export const LANGS = [
2
+ {
3
+ type: "option",
4
+ value: "Afar",
5
+ label: "aa",
6
+ },
7
+ {
8
+ type: "option",
9
+ value: "Abkhazian",
10
+ label: "ab",
11
+ },
12
+ {
13
+ type: "option",
14
+ value: "Avestan",
15
+ label: "ae",
16
+ },
17
+ {
18
+ type: "option",
19
+ value: "Afrikaans",
20
+ label: "af",
21
+ },
22
+ {
23
+ type: "option",
24
+ value: "Afrikaans (Namibia)",
25
+ label: "af-NA",
26
+ },
27
+ {
28
+ type: "option",
29
+ value: "Afrikaans (South Africa)",
30
+ label: "af-ZA",
31
+ },
32
+ {
33
+ type: "option",
34
+ value: "Akan",
35
+ label: "ak",
36
+ },
37
+ {
38
+ type: "option",
39
+ value: "Akan (Ghana)",
40
+ label: "ak-GH",
41
+ },
42
+ {
43
+ type: "option",
44
+ value: "Albanian",
45
+ label: "sq",
46
+ },
47
+ {
48
+ type: "option",
49
+ value: "Albanian (Albania)",
50
+ label: "sq-AL",
51
+ },
52
+ {
53
+ type: "option",
54
+ value: "Amharic",
55
+ label: "am",
56
+ },
57
+ {
58
+ type: "option",
59
+ value: "Amharic (Ethiopia)",
60
+ label: "am-ET",
61
+ },
62
+ {
63
+ type: "option",
64
+ value: "Aragonese",
65
+ label: "an",
66
+ },
67
+ {
68
+ type: "option",
69
+ value: "Arabic",
70
+ label: "ar",
71
+ },
72
+ {
73
+ type: "option",
74
+ value: "Arabic (Algeria)",
75
+ label: "ar-DZ",
76
+ },
77
+ {
78
+ type: "option",
79
+ value: "Arabic (Bahrain)",
80
+ label: "ar-BH",
81
+ },
82
+ {
83
+ type: "option",
84
+ value: "Arabic (Egypt)",
85
+ label: "ar-EG",
86
+ },
87
+ {
88
+ type: "option",
89
+ value: "Arabic (Iraq)",
90
+ label: "ar-IQ",
91
+ },
92
+ {
93
+ type: "option",
94
+ value: "Arabic (Jordan)",
95
+ label: "ar-JO",
96
+ },
97
+ {
98
+ type: "option",
99
+ value: "Arabic (Kuwait)",
100
+ label: "ar-KW",
101
+ },
102
+ {
103
+ type: "option",
104
+ value: "Arabic (Lebanon)",
105
+ label: "ar-LB",
106
+ },
107
+ {
108
+ type: "option",
109
+ value: "Arabic (Libya)",
110
+ label: "ar-LY",
111
+ },
112
+ {
113
+ type: "option",
114
+ value: "Arabic (Morocco)",
115
+ label: "ar-MA",
116
+ },
117
+ {
118
+ type: "option",
119
+ value: "Arabic (Oman)",
120
+ label: "ar-OM",
121
+ },
122
+ {
123
+ type: "option",
124
+ value: "Arabic (Qatar)",
125
+ label: "ar-QA",
126
+ },
127
+ {
128
+ type: "option",
129
+ value: "Arabic (Saudi Arabia)",
130
+ label: "ar-SA",
131
+ },
132
+ {
133
+ type: "option",
134
+ value: "Arabic (Sudan)",
135
+ label: "ar-SD",
136
+ },
137
+ {
138
+ type: "option",
139
+ value: "Arabic (Syria)",
140
+ label: "ar-SY",
141
+ },
142
+ {
143
+ type: "option",
144
+ value: "Arabic (Tunisia)",
145
+ label: "ar-TN",
146
+ },
147
+ {
148
+ type: "option",
149
+ value: "Arabic (United Arab Emirates)",
150
+ label: "ar-AE",
151
+ },
152
+ {
153
+ type: "option",
154
+ value: "Arabic (Yemen)",
155
+ label: "ar-YE",
156
+ },
157
+ {
158
+ type: "option",
159
+ value: "Armenian",
160
+ label: "hy",
161
+ },
162
+ {
163
+ type: "option",
164
+ value: "Armenian (Armenia)",
165
+ label: "hy-AM",
166
+ },
167
+ {
168
+ type: "option",
169
+ value: "Assamese",
170
+ label: "as",
171
+ },
172
+ {
173
+ type: "option",
174
+ value: "Assamese (India)",
175
+ label: "as-IN",
176
+ },
177
+ {
178
+ type: "option",
179
+ value: "Asu",
180
+ label: "asa",
181
+ },
182
+ {
183
+ type: "option",
184
+ value: "Asu (Tanzania)",
185
+ label: "asa-TZ",
186
+ },
187
+ {
188
+ type: "option",
189
+ value: "Avaric",
190
+ label: "av",
191
+ },
192
+ {
193
+ type: "option",
194
+ value: "Aymara",
195
+ label: "ay",
196
+ },
197
+ {
198
+ type: "option",
199
+ value: "Azerbaijani",
200
+ label: "az",
201
+ },
202
+ {
203
+ type: "option",
204
+ value: "Azerbaijani (Cyrillic)",
205
+ label: "az-Cyrl",
206
+ },
207
+ {
208
+ type: "option",
209
+ value: "Azerbaijani (Cyrillic, Azerbaijan)",
210
+ label: "az-Cyrl-AZ",
211
+ },
212
+ {
213
+ type: "option",
214
+ value: "Azerbaijani (Latin)",
215
+ label: "az-Latn",
216
+ },
217
+ {
218
+ type: "option",
219
+ value: "Azerbaijani (Latin, Azerbaijan)",
220
+ label: "az-Latn-AZ",
221
+ },
222
+ {
223
+ type: "option",
224
+ value: "Bambara",
225
+ label: "bm",
226
+ },
227
+ {
228
+ type: "option",
229
+ value: "Bambara (Mali)",
230
+ label: "bm-ML",
231
+ },
232
+ {
233
+ type: "option",
234
+ value: "Bashkir",
235
+ label: "ba",
236
+ },
237
+ {
238
+ type: "option",
239
+ value: "Basque",
240
+ label: "eu",
241
+ },
242
+ {
243
+ type: "option",
244
+ value: "Basque (Spain)",
245
+ label: "eu-ES",
246
+ },
247
+ {
248
+ type: "option",
249
+ value: "Belarusian",
250
+ label: "be",
251
+ },
252
+ {
253
+ type: "option",
254
+ value: "Belarusian (Belarus)",
255
+ label: "be-BY",
256
+ },
257
+ {
258
+ type: "option",
259
+ value: "Bemba",
260
+ label: "bem",
261
+ },
262
+ {
263
+ type: "option",
264
+ value: "Bemba (Zambia)",
265
+ label: "bem-ZM",
266
+ },
267
+ {
268
+ type: "option",
269
+ value: "Bena",
270
+ label: "bez",
271
+ },
272
+ {
273
+ type: "option",
274
+ value: "Bena (Tanzania)",
275
+ label: "bez-TZ",
276
+ },
277
+ {
278
+ type: "option",
279
+ value: "Bengali",
280
+ label: "bn",
281
+ },
282
+ {
283
+ type: "option",
284
+ value: "Bengali (Bangladesh)",
285
+ label: "bn-BD",
286
+ },
287
+ {
288
+ type: "option",
289
+ value: "Bengali (India)",
290
+ label: "bn-IN",
291
+ },
292
+ {
293
+ type: "option",
294
+ value: "Bislama",
295
+ label: "bi",
296
+ },
297
+ {
298
+ type: "option",
299
+ value: "Bosnian",
300
+ label: "bs",
301
+ },
302
+ {
303
+ type: "option",
304
+ value: "Bosnian (Bosnia and Herzegovina)",
305
+ label: "bs-BA",
306
+ },
307
+ {
308
+ type: "option",
309
+ value: "Breton",
310
+ label: "br",
311
+ },
312
+ {
313
+ type: "option",
314
+ value: "Bulgarian",
315
+ label: "bg",
316
+ },
317
+ {
318
+ type: "option",
319
+ value: "Bulgarian (Bulgaria)",
320
+ label: "bg-BG",
321
+ },
322
+ {
323
+ type: "option",
324
+ value: "Burmese",
325
+ label: "my",
326
+ },
327
+ {
328
+ type: "option",
329
+ value: "Burmese (Myanmar [Burma])",
330
+ label: "my-MM",
331
+ },
332
+ {
333
+ type: "option",
334
+ value: "Cantonese (Traditional, Hong Kong SAR China)",
335
+ label: "yue-Hant-HK",
336
+ },
337
+ {
338
+ type: "option",
339
+ value: "Catalan",
340
+ label: "ca",
341
+ },
342
+ {
343
+ type: "option",
344
+ value: "Catalan (Spain)",
345
+ label: "ca-ES",
346
+ },
347
+ {
348
+ type: "option",
349
+ value: "Central Morocco Tamazight",
350
+ label: "tzm",
351
+ },
352
+ {
353
+ type: "option",
354
+ value: "Central Morocco Tamazight (Latin)",
355
+ label: "tzm-Latn",
356
+ },
357
+ {
358
+ type: "option",
359
+ value: "Central Morocco Tamazight (Latin, Morocco)",
360
+ label: "tzm-Latn-MA",
361
+ },
362
+ {
363
+ type: "option",
364
+ value: "Cherokee (United States)",
365
+ label: "chr-US",
366
+ },
367
+ {
368
+ type: "option",
369
+ value: "Chamorro",
370
+ label: "ch",
371
+ },
372
+ {
373
+ type: "option",
374
+ value: "Chechen",
375
+ label: "ce",
376
+ },
377
+ {
378
+ type: "option",
379
+ value: "Cherokee",
380
+ label: "chr",
381
+ },
382
+ {
383
+ type: "option",
384
+ value: "Chichewa, Chewa, Nyanja",
385
+ label: "ny",
386
+ },
387
+ {
388
+ type: "option",
389
+ value: "Chiga",
390
+ label: "cgg",
391
+ },
392
+ {
393
+ type: "option",
394
+ value: "Chiga (Uganda)",
395
+ label: "cgg-UG",
396
+ },
397
+ {
398
+ type: "option",
399
+ value: "Chinese",
400
+ label: "zh",
401
+ },
402
+ {
403
+ type: "option",
404
+ value: "Chinese (Simplified Han)",
405
+ label: "zh-Hans",
406
+ },
407
+ {
408
+ type: "option",
409
+ value: "Chinese (Simplified Han, China)",
410
+ label: "zh-Hans-CN",
411
+ },
412
+ {
413
+ type: "option",
414
+ value: "Chinese (Simplified Han, Hong Kong SAR China)",
415
+ label: "zh-Hans-HK",
416
+ },
417
+ {
418
+ type: "option",
419
+ value: "Chinese (Simplified Han, Macau SAR China)",
420
+ label: "zh-Hans-MO",
421
+ },
422
+ {
423
+ type: "option",
424
+ value: "Chinese (Simplified Han, Singapore)",
425
+ label: "zh-Hans-SG",
426
+ },
427
+ {
428
+ type: "option",
429
+ value: "Chinese (Traditional Han)",
430
+ label: "zh-Hant",
431
+ },
432
+ {
433
+ type: "option",
434
+ value: "Chinese (Traditional Han, Hong Kong SAR China)",
435
+ label: "zh-Hant-HK",
436
+ },
437
+ {
438
+ type: "option",
439
+ value: "Chinese (Traditional Han, Macau SAR China)",
440
+ label: "zh-Hant-MO",
441
+ },
442
+ {
443
+ type: "option",
444
+ value: "Chinese (Traditional Han, Taiwan)",
445
+ label: "zh-Hant-TW",
446
+ },
447
+ {
448
+ type: "option",
449
+ value: "Church Slavic, Old Slavonic",
450
+ label: "cu",
451
+ },
452
+ {
453
+ type: "option",
454
+ value: "Chuvash",
455
+ label: "cv",
456
+ },
457
+ {
458
+ type: "option",
459
+ value: "Cornish (United Kingdom)",
460
+ label: "kw-GB",
461
+ },
462
+ {
463
+ type: "option",
464
+ value: "Cornish",
465
+ label: "kw",
466
+ },
467
+ {
468
+ type: "option",
469
+ value: "Corsican",
470
+ label: "co",
471
+ },
472
+ {
473
+ type: "option",
474
+ value: "Cree",
475
+ label: "cr",
476
+ },
477
+ {
478
+ type: "option",
479
+ value: "Croatian",
480
+ label: "hr",
481
+ },
482
+ {
483
+ type: "option",
484
+ value: "Croatian (Croatia)",
485
+ label: "hr-HR",
486
+ },
487
+ {
488
+ type: "option",
489
+ value: "Czech",
490
+ label: "cs",
491
+ },
492
+ {
493
+ type: "option",
494
+ value: "Czech (Czechia)",
495
+ label: "cs-CZ",
496
+ },
497
+ {
498
+ type: "option",
499
+ value: "Danish",
500
+ label: "da",
501
+ },
502
+ {
503
+ type: "option",
504
+ value: "Danish (Denmark)",
505
+ label: "da-DK",
506
+ },
507
+ {
508
+ type: "option",
509
+ value: "Divehi, Dhivehi, Maldivian",
510
+ label: "dv",
511
+ },
512
+ {
513
+ type: "option",
514
+ value: "Dutch",
515
+ label: "nl",
516
+ },
517
+ {
518
+ type: "option",
519
+ value: "Dutch (Netherlands)",
520
+ label: "nl-NL",
521
+ },
522
+ {
523
+ type: "option",
524
+ value: "Dutch (Belgium)",
525
+ label: "nl-BE",
526
+ },
527
+ {
528
+ type: "option",
529
+ value: "Dzongkha",
530
+ label: "dz",
531
+ },
532
+ {
533
+ type: "option",
534
+ value: "Embu",
535
+ label: "ebu",
536
+ },
537
+ {
538
+ type: "option",
539
+ value: "Embu (Kenya)",
540
+ label: "ebu-KE",
541
+ },
542
+ {
543
+ type: "option",
544
+ value: "English",
545
+ label: "en",
546
+ },
547
+ {
548
+ type: "option",
549
+ value: "English (United States)",
550
+ label: "en-US",
551
+ },
552
+ {
553
+ type: "option",
554
+ value: "English (United Kingdom)",
555
+ label: "en-GB",
556
+ },
557
+ {
558
+ type: "option",
559
+ value: "English (American Samoa)",
560
+ label: "en-AS",
561
+ },
562
+ {
563
+ type: "option",
564
+ value: "English (Australia)",
565
+ label: "en-AU",
566
+ },
567
+ {
568
+ type: "option",
569
+ value: "English (Belgium)",
570
+ label: "en-BE",
571
+ },
572
+ {
573
+ type: "option",
574
+ value: "English (Belize)",
575
+ label: "en-BZ",
576
+ },
577
+ {
578
+ type: "option",
579
+ value: "English (Botswana)",
580
+ label: "en-BW",
581
+ },
582
+ {
583
+ type: "option",
584
+ value: "English (Canada)",
585
+ label: "en-CA",
586
+ },
587
+ {
588
+ type: "option",
589
+ value: "English (Guam)",
590
+ label: "en-GU",
591
+ },
592
+ {
593
+ type: "option",
594
+ value: "English (Hong Kong SAR China)",
595
+ label: "en-HK",
596
+ },
597
+ {
598
+ type: "option",
599
+ value: "English (India)",
600
+ label: "en-IN",
601
+ },
602
+ {
603
+ type: "option",
604
+ value: "English (Ireland)",
605
+ label: "en-IE",
606
+ },
607
+ {
608
+ type: "option",
609
+ value: "English (Israel)",
610
+ label: "en-IL",
611
+ },
612
+ {
613
+ type: "option",
614
+ value: "English (Jamaica)",
615
+ label: "en-JM",
616
+ },
617
+ {
618
+ type: "option",
619
+ value: "English (Malta)",
620
+ label: "en-MT",
621
+ },
622
+ {
623
+ type: "option",
624
+ value: "English (Marshall Islands)",
625
+ label: "en-MH",
626
+ },
627
+ {
628
+ type: "option",
629
+ value: "English (Mauritius)",
630
+ label: "en-MU",
631
+ },
632
+ {
633
+ type: "option",
634
+ value: "English (Namibia)",
635
+ label: "en-NA",
636
+ },
637
+ {
638
+ type: "option",
639
+ value: "English (New Zealand)",
640
+ label: "en-NZ",
641
+ },
642
+ {
643
+ type: "option",
644
+ value: "English (Northern Mariana Islands)",
645
+ label: "en-MP",
646
+ },
647
+ {
648
+ type: "option",
649
+ value: "English (Pakistan)",
650
+ label: "en-PK",
651
+ },
652
+ {
653
+ type: "option",
654
+ value: "English (Philippines)",
655
+ label: "en-PH",
656
+ },
657
+ {
658
+ type: "option",
659
+ value: "English (Singapore)",
660
+ label: "en-SG",
661
+ },
662
+ {
663
+ type: "option",
664
+ value: "English (South Africa)",
665
+ label: "en-ZA",
666
+ },
667
+ {
668
+ type: "option",
669
+ value: "English (Trinidad and Tobago)",
670
+ label: "en-TT",
671
+ },
672
+ {
673
+ type: "option",
674
+ value: "English (U.S. Minor Outlying Islands)",
675
+ label: "en-UM",
676
+ },
677
+ {
678
+ type: "option",
679
+ value: "English (U.S. Virgin Islands)",
680
+ label: "en-VI",
681
+ },
682
+ {
683
+ type: "option",
684
+ value: "English (Zimbabwe)",
685
+ label: "en-ZW",
686
+ },
687
+ {
688
+ type: "option",
689
+ value: "Esperanto",
690
+ label: "eo",
691
+ },
692
+ {
693
+ type: "option",
694
+ value: "Estonian",
695
+ label: "et",
696
+ },
697
+ {
698
+ type: "option",
699
+ value: "Estonian (Estonia)",
700
+ label: "et-EE",
701
+ },
702
+ {
703
+ type: "option",
704
+ value: "Ewe",
705
+ label: "ee",
706
+ },
707
+ {
708
+ type: "option",
709
+ value: "Ewe (Ghana)",
710
+ label: "ee-GH",
711
+ },
712
+ {
713
+ type: "option",
714
+ value: "Ewe (Togo)",
715
+ label: "ee-TG",
716
+ },
717
+ {
718
+ type: "option",
719
+ value: "Faroese",
720
+ label: "fo",
721
+ },
722
+ {
723
+ type: "option",
724
+ value: "Faroese (Faroe Islands)",
725
+ label: "fo-FO",
726
+ },
727
+ {
728
+ type: "option",
729
+ value: "Filipino",
730
+ label: "fil",
731
+ },
732
+ {
733
+ type: "option",
734
+ value: "Filipino (Philippines)",
735
+ label: "fil-PH",
736
+ },
737
+ {
738
+ type: "option",
739
+ value: "Finnish",
740
+ label: "fi",
741
+ },
742
+ {
743
+ type: "option",
744
+ value: "Finnish (Finland)",
745
+ label: "fi-FI",
746
+ },
747
+ {
748
+ type: "option",
749
+ value: "Fijian",
750
+ label: "fj",
751
+ },
752
+ {
753
+ type: "option",
754
+ value: "French",
755
+ label: "fr",
756
+ },
757
+ {
758
+ type: "option",
759
+ value: "French (Belgium)",
760
+ label: "fr-BE",
761
+ },
762
+ {
763
+ type: "option",
764
+ value: "French (Benin)",
765
+ label: "fr-BJ",
766
+ },
767
+ {
768
+ type: "option",
769
+ value: "French (Burkina Faso)",
770
+ label: "fr-BF",
771
+ },
772
+ {
773
+ type: "option",
774
+ value: "French (Burundi)",
775
+ label: "fr-BI",
776
+ },
777
+ {
778
+ type: "option",
779
+ value: "French (Cameroon)",
780
+ label: "fr-CM",
781
+ },
782
+ {
783
+ type: "option",
784
+ value: "French (Canada)",
785
+ label: "fr-CA",
786
+ },
787
+ {
788
+ type: "option",
789
+ value: "French (Central African Republic)",
790
+ label: "fr-CF",
791
+ },
792
+ {
793
+ type: "option",
794
+ value: "French (Chad)",
795
+ label: "fr-TD",
796
+ },
797
+ {
798
+ type: "option",
799
+ value: "French (Comoros)",
800
+ label: "fr-KM",
801
+ },
802
+ {
803
+ type: "option",
804
+ value: "French (Congo - Brazzaville)",
805
+ label: "fr-CG",
806
+ },
807
+ {
808
+ type: "option",
809
+ value: "French (Congo - Kinshasa)",
810
+ label: "fr-CD",
811
+ },
812
+ {
813
+ type: "option",
814
+ value: "French (Côte d’Ivoire)",
815
+ label: "fr-CI",
816
+ },
817
+ {
818
+ type: "option",
819
+ value: "French (Djibouti)",
820
+ label: "fr-DJ",
821
+ },
822
+ {
823
+ type: "option",
824
+ value: "French (Equatorial Guinea)",
825
+ label: "fr-GQ",
826
+ },
827
+ {
828
+ type: "option",
829
+ value: "French (France)",
830
+ label: "fr-FR",
831
+ },
832
+ {
833
+ type: "option",
834
+ value: "French (Gabon)",
835
+ label: "fr-GA",
836
+ },
837
+ {
838
+ type: "option",
839
+ value: "French (Guadeloupe)",
840
+ label: "fr-GP",
841
+ },
842
+ {
843
+ type: "option",
844
+ value: "French (Guinea)",
845
+ label: "fr-GN",
846
+ },
847
+ {
848
+ type: "option",
849
+ value: "French (Luxembourg)",
850
+ label: "fr-LU",
851
+ },
852
+ {
853
+ type: "option",
854
+ value: "French (Madagascar)",
855
+ label: "fr-MG",
856
+ },
857
+ {
858
+ type: "option",
859
+ value: "French (Mali)",
860
+ label: "fr-ML",
861
+ },
862
+ {
863
+ type: "option",
864
+ value: "French (Martinique)",
865
+ label: "fr-MQ",
866
+ },
867
+ {
868
+ type: "option",
869
+ value: "French (Monaco)",
870
+ label: "fr-MC",
871
+ },
872
+ {
873
+ type: "option",
874
+ value: "French (Niger)",
875
+ label: "fr-NE",
876
+ },
877
+ {
878
+ type: "option",
879
+ value: "French (Rwanda)",
880
+ label: "fr-RW",
881
+ },
882
+ {
883
+ type: "option",
884
+ value: "French (Réunion)",
885
+ label: "fr-RE",
886
+ },
887
+ {
888
+ type: "option",
889
+ value: "French (Saint Barthélemy)",
890
+ label: "fr-BL",
891
+ },
892
+ {
893
+ type: "option",
894
+ value: "French (Saint Martin)",
895
+ label: "fr-MF",
896
+ },
897
+ {
898
+ type: "option",
899
+ value: "French (Senegal)",
900
+ label: "fr-SN",
901
+ },
902
+ {
903
+ type: "option",
904
+ value: "French (Switzerland)",
905
+ label: "fr-CH",
906
+ },
907
+ {
908
+ type: "option",
909
+ value: "French (Togo)",
910
+ label: "fr-TG",
911
+ },
912
+ {
913
+ type: "option",
914
+ value: "Fulah",
915
+ label: "ff",
916
+ },
917
+ {
918
+ type: "option",
919
+ value: "Fulah (Senegal)",
920
+ label: "ff-SN",
921
+ },
922
+ {
923
+ type: "option",
924
+ value: "Gaelic, Scottish Gaelic",
925
+ label: "gd",
926
+ },
927
+ {
928
+ type: "option",
929
+ value: "Galician",
930
+ label: "gl",
931
+ },
932
+ {
933
+ type: "option",
934
+ value: "Galician (Spain)",
935
+ label: "gl-ES",
936
+ },
937
+ {
938
+ type: "option",
939
+ value: "Ganda",
940
+ label: "lg",
941
+ },
942
+ {
943
+ type: "option",
944
+ value: "Ganda (Uganda)",
945
+ label: "lg-UG",
946
+ },
947
+ {
948
+ type: "option",
949
+ value: "Georgian",
950
+ label: "ka",
951
+ },
952
+ {
953
+ type: "option",
954
+ value: "Georgian (Georgia)",
955
+ label: "ka-GE",
956
+ },
957
+ {
958
+ type: "option",
959
+ value: "German",
960
+ label: "de",
961
+ },
962
+ {
963
+ type: "option",
964
+ value: "German (Austria)",
965
+ label: "de-AT",
966
+ },
967
+ {
968
+ type: "option",
969
+ value: "German (Belgium)",
970
+ label: "de-BE",
971
+ },
972
+ {
973
+ type: "option",
974
+ value: "German (Germany)",
975
+ label: "de-DE",
976
+ },
977
+ {
978
+ type: "option",
979
+ value: "German (Liechtenstein)",
980
+ label: "de-LI",
981
+ },
982
+ {
983
+ type: "option",
984
+ value: "German (Luxembourg)",
985
+ label: "de-LU",
986
+ },
987
+ {
988
+ type: "option",
989
+ value: "German (Switzerland)",
990
+ label: "de-CH",
991
+ },
992
+ {
993
+ type: "option",
994
+ value: "Greek",
995
+ label: "el",
996
+ },
997
+ {
998
+ type: "option",
999
+ value: "Greek (Cyprus)",
1000
+ label: "el-CY",
1001
+ },
1002
+ {
1003
+ type: "option",
1004
+ value: "Greek (Greece)",
1005
+ label: "el-GR",
1006
+ },
1007
+ {
1008
+ type: "option",
1009
+ value: "Guarani",
1010
+ label: "gn",
1011
+ },
1012
+ {
1013
+ type: "option",
1014
+ value: "Gujarati",
1015
+ label: "gu",
1016
+ },
1017
+ {
1018
+ type: "option",
1019
+ value: "Gujarati (India)",
1020
+ label: "gu-IN",
1021
+ },
1022
+ {
1023
+ type: "option",
1024
+ value: "Gusii",
1025
+ label: "guz",
1026
+ },
1027
+ {
1028
+ type: "option",
1029
+ value: "Gusii (Kenya)",
1030
+ label: "guz-KE",
1031
+ },
1032
+ {
1033
+ type: "option",
1034
+ value: "Haitian, Haitian Creole",
1035
+ label: "ht",
1036
+ },
1037
+ {
1038
+ type: "option",
1039
+ value: "Hausa",
1040
+ label: "ha",
1041
+ },
1042
+ {
1043
+ type: "option",
1044
+ value: "Hausa (Latin)",
1045
+ label: "ha-Latn",
1046
+ },
1047
+ {
1048
+ type: "option",
1049
+ value: "Hausa (Latin, Ghana)",
1050
+ label: "ha-Latn-GH",
1051
+ },
1052
+ {
1053
+ type: "option",
1054
+ value: "Hausa (Latin, Niger)",
1055
+ label: "ha-Latn-NE",
1056
+ },
1057
+ {
1058
+ type: "option",
1059
+ value: "Hausa (Latin, Nigeria)",
1060
+ label: "ha-Latn-NG",
1061
+ },
1062
+ {
1063
+ type: "option",
1064
+ value: "Hawaiian",
1065
+ label: "haw",
1066
+ },
1067
+ {
1068
+ type: "option",
1069
+ value: "Hawaiian (United States)",
1070
+ label: "haw-US",
1071
+ },
1072
+ {
1073
+ type: "option",
1074
+ value: "Hebrew",
1075
+ label: "he",
1076
+ },
1077
+ {
1078
+ type: "option",
1079
+ value: "Hebrew (Israel)",
1080
+ label: "he-IL",
1081
+ },
1082
+ {
1083
+ type: "option",
1084
+ value: "Herero",
1085
+ label: "hz",
1086
+ },
1087
+ {
1088
+ type: "option",
1089
+ value: "Hindi",
1090
+ label: "hi",
1091
+ },
1092
+ {
1093
+ type: "option",
1094
+ value: "Hindi (India)",
1095
+ label: "hi-IN",
1096
+ },
1097
+ {
1098
+ type: "option",
1099
+ value: "Hiri Motu",
1100
+ label: "ho",
1101
+ },
1102
+ {
1103
+ type: "option",
1104
+ value: "Hungarian",
1105
+ label: "hu",
1106
+ },
1107
+ {
1108
+ type: "option",
1109
+ value: "Hungarian (Hungary)",
1110
+ label: "hu-HU",
1111
+ },
1112
+ {
1113
+ type: "option",
1114
+ value: "Icelandic",
1115
+ label: "is",
1116
+ },
1117
+ {
1118
+ type: "option",
1119
+ value: "Icelandic (Iceland)",
1120
+ label: "is-IS",
1121
+ },
1122
+ {
1123
+ type: "option",
1124
+ value: "Ido",
1125
+ label: "io",
1126
+ },
1127
+ {
1128
+ type: "option",
1129
+ value: "Igbo (Nigeria)",
1130
+ label: "ig-NG",
1131
+ },
1132
+ {
1133
+ type: "option",
1134
+ value: "Igbo",
1135
+ label: "ig",
1136
+ },
1137
+ {
1138
+ type: "option",
1139
+ value: "Indonesian",
1140
+ label: "id",
1141
+ },
1142
+ {
1143
+ type: "option",
1144
+ value: "Indonesian (Indonesia)",
1145
+ label: "id-ID",
1146
+ },
1147
+ {
1148
+ type: "option",
1149
+ value: "Interlingua",
1150
+ label: "ia",
1151
+ },
1152
+ {
1153
+ type: "option",
1154
+ value: "Interlingue, Occidental",
1155
+ label: "ie",
1156
+ },
1157
+ {
1158
+ type: "option",
1159
+ value: "Inuktitut",
1160
+ label: "iu",
1161
+ },
1162
+ {
1163
+ type: "option",
1164
+ value: "Inupiaq",
1165
+ label: "ik",
1166
+ },
1167
+ {
1168
+ type: "option",
1169
+ value: "Irish",
1170
+ label: "ga",
1171
+ },
1172
+ {
1173
+ type: "option",
1174
+ value: "Irish (Ireland)",
1175
+ label: "ga-IE",
1176
+ },
1177
+ {
1178
+ type: "option",
1179
+ value: "Italian",
1180
+ label: "it",
1181
+ },
1182
+ {
1183
+ type: "option",
1184
+ value: "Italian (Italy)",
1185
+ label: "it-IT",
1186
+ },
1187
+ {
1188
+ type: "option",
1189
+ value: "Italian (Switzerland)",
1190
+ label: "it-CH",
1191
+ },
1192
+ {
1193
+ type: "option",
1194
+ value: "Japanese",
1195
+ label: "ja",
1196
+ },
1197
+ {
1198
+ type: "option",
1199
+ value: "Japanese (Japan)",
1200
+ label: "ja-JP",
1201
+ },
1202
+ {
1203
+ type: "option",
1204
+ value: "Javanese",
1205
+ label: "jv",
1206
+ },
1207
+ {
1208
+ type: "option",
1209
+ value: "Kabuverdianu",
1210
+ label: "kea",
1211
+ },
1212
+ {
1213
+ type: "option",
1214
+ value: "Kabuverdianu (Cape Verde)",
1215
+ label: "kea-CV",
1216
+ },
1217
+ {
1218
+ type: "option",
1219
+ value: "Kabyle",
1220
+ label: "kab",
1221
+ },
1222
+ {
1223
+ type: "option",
1224
+ value: "Kabyle (Algeria)",
1225
+ label: "kab-DZ",
1226
+ },
1227
+ {
1228
+ type: "option",
1229
+ value: "Kalaallisut",
1230
+ label: "kl",
1231
+ },
1232
+ {
1233
+ type: "option",
1234
+ value: "Kalaallisut (Greenland)",
1235
+ label: "kl-GL",
1236
+ },
1237
+ {
1238
+ type: "option",
1239
+ value: "Kalenjin",
1240
+ label: "kln",
1241
+ },
1242
+ {
1243
+ type: "option",
1244
+ value: "Kalenjin (Kenya)",
1245
+ label: "kln-KE",
1246
+ },
1247
+ {
1248
+ type: "option",
1249
+ value: "Kamba",
1250
+ label: "kam",
1251
+ },
1252
+ {
1253
+ type: "option",
1254
+ value: "Kamba (Kenya)",
1255
+ label: "kam-KE",
1256
+ },
1257
+ {
1258
+ type: "option",
1259
+ value: "Kannada",
1260
+ label: "kn",
1261
+ },
1262
+ {
1263
+ type: "option",
1264
+ value: "Kannada (India)",
1265
+ label: "kn-IN",
1266
+ },
1267
+ {
1268
+ type: "option",
1269
+ value: "Kanuri",
1270
+ label: "kr",
1271
+ },
1272
+ {
1273
+ type: "option",
1274
+ value: "Kashmiri",
1275
+ label: "ks",
1276
+ },
1277
+ {
1278
+ type: "option",
1279
+ value: "Kazakh",
1280
+ label: "kk",
1281
+ },
1282
+ {
1283
+ type: "option",
1284
+ value: "Kazakh (Cyrillic)",
1285
+ label: "kk-Cyrl",
1286
+ },
1287
+ {
1288
+ type: "option",
1289
+ value: "Kazakh (Cyrillic, Kazakhstan)",
1290
+ label: "kk-Cyrl-KZ",
1291
+ },
1292
+ {
1293
+ type: "option",
1294
+ value: "Khmer",
1295
+ label: "km",
1296
+ },
1297
+ {
1298
+ type: "option",
1299
+ value: "Khmer (Cambodia)",
1300
+ label: "km-KH",
1301
+ },
1302
+ {
1303
+ type: "option",
1304
+ value: "Kikuyu",
1305
+ label: "ki",
1306
+ },
1307
+ {
1308
+ type: "option",
1309
+ value: "Kikuyu (Kenya)",
1310
+ label: "ki-KE",
1311
+ },
1312
+ {
1313
+ type: "option",
1314
+ value: "Kinyarwanda",
1315
+ label: "rw",
1316
+ },
1317
+ {
1318
+ type: "option",
1319
+ value: "Kinyarwanda (Rwanda)",
1320
+ label: "rw-RW",
1321
+ },
1322
+ {
1323
+ type: "option",
1324
+ value: "Kirghiz, Kyrgyz",
1325
+ label: "ky",
1326
+ },
1327
+ {
1328
+ type: "option",
1329
+ value: "Komi",
1330
+ label: "kv",
1331
+ },
1332
+ {
1333
+ type: "option",
1334
+ value: "Kongo",
1335
+ label: "kg",
1336
+ },
1337
+ {
1338
+ type: "option",
1339
+ value: "Konkani",
1340
+ label: "kok",
1341
+ },
1342
+ {
1343
+ type: "option",
1344
+ value: "Konkani (India)",
1345
+ label: "kok-IN",
1346
+ },
1347
+ {
1348
+ type: "option",
1349
+ value: "Korean",
1350
+ label: "ko",
1351
+ },
1352
+ {
1353
+ type: "option",
1354
+ value: "Korean (South Korea)",
1355
+ label: "ko-KR",
1356
+ },
1357
+ {
1358
+ type: "option",
1359
+ value: "Koyra Chiini",
1360
+ label: "khq",
1361
+ },
1362
+ {
1363
+ type: "option",
1364
+ value: "Koyra Chiini (Mali)",
1365
+ label: "khq-ML",
1366
+ },
1367
+ {
1368
+ type: "option",
1369
+ value: "Koyraboro Senni",
1370
+ label: "ses",
1371
+ },
1372
+ {
1373
+ type: "option",
1374
+ value: "Koyraboro Senni (Mali)",
1375
+ label: "ses-ML",
1376
+ },
1377
+ {
1378
+ type: "option",
1379
+ value: "Kuanyama, Kwanyama",
1380
+ label: "kj",
1381
+ },
1382
+ {
1383
+ type: "option",
1384
+ value: "Kurdish",
1385
+ label: "ku",
1386
+ },
1387
+ {
1388
+ type: "option",
1389
+ value: "Langi",
1390
+ label: "lag",
1391
+ },
1392
+ {
1393
+ type: "option",
1394
+ value: "Langi (Tanzania)",
1395
+ label: "lag-TZ",
1396
+ },
1397
+ {
1398
+ type: "option",
1399
+ value: "Lao",
1400
+ label: "lo",
1401
+ },
1402
+ {
1403
+ type: "option",
1404
+ value: "Latin",
1405
+ label: "la",
1406
+ },
1407
+ {
1408
+ type: "option",
1409
+ value: "Latvian",
1410
+ label: "lv",
1411
+ },
1412
+ {
1413
+ type: "option",
1414
+ value: "Latvian (Latvia)",
1415
+ label: "lv-LV",
1416
+ },
1417
+ {
1418
+ type: "option",
1419
+ value: "Limburgan, Limburger, Limburgish",
1420
+ label: "li",
1421
+ },
1422
+ {
1423
+ type: "option",
1424
+ value: "Lingala",
1425
+ label: "ln",
1426
+ },
1427
+ {
1428
+ type: "option",
1429
+ value: "Lithuanian",
1430
+ label: "lt",
1431
+ },
1432
+ {
1433
+ type: "option",
1434
+ value: "Lithuanian (Lithuania)",
1435
+ label: "lt-LT",
1436
+ },
1437
+ {
1438
+ type: "option",
1439
+ value: "Luba-Katanga",
1440
+ label: "lu",
1441
+ },
1442
+ {
1443
+ type: "option",
1444
+ value: "Luo",
1445
+ label: "luo",
1446
+ },
1447
+ {
1448
+ type: "option",
1449
+ value: "Luo (Kenya)",
1450
+ label: "luo-KE",
1451
+ },
1452
+ {
1453
+ type: "option",
1454
+ value: "Luxembourgish, Letzeburgesch",
1455
+ label: "lb",
1456
+ },
1457
+ {
1458
+ type: "option",
1459
+ value: "Luyia",
1460
+ label: "luy",
1461
+ },
1462
+ {
1463
+ type: "option",
1464
+ value: "Luyia (Kenya)",
1465
+ label: "luy-KE",
1466
+ },
1467
+ {
1468
+ type: "option",
1469
+ value: "Macedonian",
1470
+ label: "mk",
1471
+ },
1472
+ {
1473
+ type: "option",
1474
+ value: "Macedonian (Macedonia)",
1475
+ label: "mk-MK",
1476
+ },
1477
+ {
1478
+ type: "option",
1479
+ value: "Machame",
1480
+ label: "jmc",
1481
+ },
1482
+ {
1483
+ type: "option",
1484
+ value: "Machame (Tanzania)",
1485
+ label: "jmc-TZ",
1486
+ },
1487
+ {
1488
+ type: "option",
1489
+ value: "Makonde",
1490
+ label: "kde",
1491
+ },
1492
+ {
1493
+ type: "option",
1494
+ value: "Makonde (Tanzania)",
1495
+ label: "kde-TZ",
1496
+ },
1497
+ {
1498
+ type: "option",
1499
+ value: "Malagasy",
1500
+ label: "mg",
1501
+ },
1502
+ {
1503
+ type: "option",
1504
+ value: "Malagasy (Madagascar)",
1505
+ label: "mg-MG",
1506
+ },
1507
+ {
1508
+ type: "option",
1509
+ value: "Malay",
1510
+ label: "ms",
1511
+ },
1512
+ {
1513
+ type: "option",
1514
+ value: "Malay (Brunei)",
1515
+ label: "ms-BN",
1516
+ },
1517
+ {
1518
+ type: "option",
1519
+ value: "Malay (Malaysia)",
1520
+ label: "ms-MY",
1521
+ },
1522
+ {
1523
+ type: "option",
1524
+ value: "Malayalam",
1525
+ label: "ml",
1526
+ },
1527
+ {
1528
+ type: "option",
1529
+ value: "Malayalam (India)",
1530
+ label: "ml-IN",
1531
+ },
1532
+ {
1533
+ type: "option",
1534
+ value: "Maltese",
1535
+ label: "mt",
1536
+ },
1537
+ {
1538
+ type: "option",
1539
+ value: "Maltese (Malta)",
1540
+ label: "mt-MT",
1541
+ },
1542
+ {
1543
+ type: "option",
1544
+ value: "Manx",
1545
+ label: "gv",
1546
+ },
1547
+ {
1548
+ type: "option",
1549
+ value: "Manx (United Kingdom)",
1550
+ label: "gv-GB",
1551
+ },
1552
+ {
1553
+ type: "option",
1554
+ value: "Maori",
1555
+ label: "mi",
1556
+ },
1557
+ {
1558
+ type: "option",
1559
+ value: "Nauru",
1560
+ label: "na",
1561
+ },
1562
+ {
1563
+ type: "option",
1564
+ value: "Marathi",
1565
+ label: "mr",
1566
+ },
1567
+ {
1568
+ type: "option",
1569
+ value: "Marathi (India)",
1570
+ label: "mr-IN",
1571
+ },
1572
+ {
1573
+ type: "option",
1574
+ value: "Marshallese",
1575
+ label: "mh",
1576
+ },
1577
+ {
1578
+ type: "option",
1579
+ value: "Masai",
1580
+ label: "mas",
1581
+ },
1582
+ {
1583
+ type: "option",
1584
+ value: "Masai (Kenya)",
1585
+ label: "mas-KE",
1586
+ },
1587
+ {
1588
+ type: "option",
1589
+ value: "Masai (Tanzania)",
1590
+ label: "mas-TZ",
1591
+ },
1592
+ {
1593
+ type: "option",
1594
+ value: "Navajo, Navaho",
1595
+ label: "nv",
1596
+ },
1597
+ {
1598
+ type: "option",
1599
+ value: "Meru",
1600
+ label: "mer",
1601
+ },
1602
+ {
1603
+ type: "option",
1604
+ value: "Meru (Kenya)",
1605
+ label: "mer-KE",
1606
+ },
1607
+ {
1608
+ type: "option",
1609
+ value: "Mongolian",
1610
+ label: "mn",
1611
+ },
1612
+ {
1613
+ type: "option",
1614
+ value: "Morisyen",
1615
+ label: "mfe",
1616
+ },
1617
+ {
1618
+ type: "option",
1619
+ value: "Morisyen (Mauritius)",
1620
+ label: "mfe-MU",
1621
+ },
1622
+ {
1623
+ type: "option",
1624
+ value: "Nama",
1625
+ label: "naq",
1626
+ },
1627
+ {
1628
+ type: "option",
1629
+ value: "Nama (Namibia)",
1630
+ label: "naq-NA",
1631
+ },
1632
+ {
1633
+ type: "option",
1634
+ value: "Nepali",
1635
+ label: "ne",
1636
+ },
1637
+ {
1638
+ type: "option",
1639
+ value: "Nepali (India)",
1640
+ label: "ne-IN",
1641
+ },
1642
+ {
1643
+ type: "option",
1644
+ value: "Nepali (Nepal)",
1645
+ label: "ne-NP",
1646
+ },
1647
+ {
1648
+ type: "option",
1649
+ value: "Ndonga",
1650
+ label: "ng",
1651
+ },
1652
+ {
1653
+ type: "option",
1654
+ value: "Northern Sami",
1655
+ label: "se",
1656
+ },
1657
+ {
1658
+ type: "option",
1659
+ value: "North Ndebele",
1660
+ label: "nd",
1661
+ },
1662
+ {
1663
+ type: "option",
1664
+ value: "North Ndebele (Zimbabwe)",
1665
+ label: "nd-ZW",
1666
+ },
1667
+ {
1668
+ type: "option",
1669
+ value: "Norwegian Bokmål",
1670
+ label: "nb",
1671
+ },
1672
+ {
1673
+ type: "option",
1674
+ value: "Norwegian Bokmål (Norway)",
1675
+ label: "nb-NO",
1676
+ },
1677
+ {
1678
+ type: "option",
1679
+ value: "Norwegian Nynorsk",
1680
+ label: "nn",
1681
+ },
1682
+ {
1683
+ type: "option",
1684
+ value: "Norwegian Nynorsk (Norway)",
1685
+ label: "nn-NO",
1686
+ },
1687
+ {
1688
+ type: "option",
1689
+ value: "Norwegian",
1690
+ label: "no",
1691
+ },
1692
+ {
1693
+ type: "option",
1694
+ value: "Nyankole",
1695
+ label: "nyn",
1696
+ },
1697
+ {
1698
+ type: "option",
1699
+ value: "Nyankole (Uganda)",
1700
+ label: "nyn-UG",
1701
+ },
1702
+ {
1703
+ type: "option",
1704
+ value: "Occitan",
1705
+ label: "oc",
1706
+ },
1707
+ {
1708
+ type: "option",
1709
+ value: "Ojibwa",
1710
+ label: "oj",
1711
+ },
1712
+ {
1713
+ type: "option",
1714
+ value: "Oriya",
1715
+ label: "or",
1716
+ },
1717
+ {
1718
+ type: "option",
1719
+ value: "Oriya (India)",
1720
+ label: "or-IN",
1721
+ },
1722
+ {
1723
+ type: "option",
1724
+ value: "Oromo",
1725
+ label: "om",
1726
+ },
1727
+ {
1728
+ type: "option",
1729
+ value: "Oromo (Ethiopia)",
1730
+ label: "om-ET",
1731
+ },
1732
+ {
1733
+ type: "option",
1734
+ value: "Oromo (Kenya)",
1735
+ label: "om-KE",
1736
+ },
1737
+ {
1738
+ type: "option",
1739
+ value: "Ossetian, Ossetic",
1740
+ label: "os",
1741
+ },
1742
+ {
1743
+ type: "option",
1744
+ value: "Pali",
1745
+ label: "pi",
1746
+ },
1747
+ {
1748
+ type: "option",
1749
+ value: "Pashto",
1750
+ label: "ps",
1751
+ },
1752
+ {
1753
+ type: "option",
1754
+ value: "Pashto (Afghanistan)",
1755
+ label: "ps-AF",
1756
+ },
1757
+ {
1758
+ type: "option",
1759
+ value: "Persian",
1760
+ label: "fa",
1761
+ },
1762
+ {
1763
+ type: "option",
1764
+ value: "Persian (Afghanistan)",
1765
+ label: "fa-AF",
1766
+ },
1767
+ {
1768
+ type: "option",
1769
+ value: "Persian (Iran)",
1770
+ label: "fa-IR",
1771
+ },
1772
+ {
1773
+ type: "option",
1774
+ value: "Polish",
1775
+ label: "pl",
1776
+ },
1777
+ {
1778
+ type: "option",
1779
+ value: "Polish (Poland)",
1780
+ label: "pl-PL",
1781
+ },
1782
+ {
1783
+ type: "option",
1784
+ value: "Portuguese",
1785
+ label: "pt",
1786
+ },
1787
+ {
1788
+ type: "option",
1789
+ value: "Portuguese (Brazil)",
1790
+ label: "pt-BR",
1791
+ },
1792
+ {
1793
+ type: "option",
1794
+ value: "Portuguese (Portugal)",
1795
+ label: "pt-PT",
1796
+ },
1797
+ {
1798
+ type: "option",
1799
+ value: "Portuguese (Guinea-Bissau)",
1800
+ label: "pt-GW",
1801
+ },
1802
+ {
1803
+ type: "option",
1804
+ value: "Portuguese (Mozambique)",
1805
+ label: "pt-MZ",
1806
+ },
1807
+ {
1808
+ type: "option",
1809
+ value: "Punjabi",
1810
+ label: "pa",
1811
+ },
1812
+ {
1813
+ type: "option",
1814
+ value: "Punjabi (Arabic)",
1815
+ label: "pa-Arab",
1816
+ },
1817
+ {
1818
+ type: "option",
1819
+ value: "Punjabi (Arabic, Pakistan)",
1820
+ label: "pa-Arab-PK",
1821
+ },
1822
+ {
1823
+ type: "option",
1824
+ value: "Punjabi (Gurmukhi)",
1825
+ label: "pa-Guru",
1826
+ },
1827
+ {
1828
+ type: "option",
1829
+ value: "Punjabi (Gurmukhi, India)",
1830
+ label: "pa-Guru-IN",
1831
+ },
1832
+ {
1833
+ type: "option",
1834
+ value: "Quechua",
1835
+ label: "qu",
1836
+ },
1837
+ {
1838
+ type: "option",
1839
+ value: "Romanian",
1840
+ label: "ro",
1841
+ },
1842
+ {
1843
+ type: "option",
1844
+ value: "Romanian (Moldova)",
1845
+ label: "ro-MD",
1846
+ },
1847
+ {
1848
+ type: "option",
1849
+ value: "Romanian (Romania)",
1850
+ label: "ro-RO",
1851
+ },
1852
+ {
1853
+ type: "option",
1854
+ value: "Romansh",
1855
+ label: "rm",
1856
+ },
1857
+ {
1858
+ type: "option",
1859
+ value: "Romansh (Switzerland)",
1860
+ label: "rm-CH",
1861
+ },
1862
+ {
1863
+ type: "option",
1864
+ value: "Rombo",
1865
+ label: "rof",
1866
+ },
1867
+ {
1868
+ type: "option",
1869
+ value: "Rombo (Tanzania)",
1870
+ label: "rof-TZ",
1871
+ },
1872
+ {
1873
+ type: "option",
1874
+ value: "Rundi",
1875
+ label: "rn",
1876
+ },
1877
+ {
1878
+ type: "option",
1879
+ value: "Russian",
1880
+ label: "ru",
1881
+ },
1882
+ {
1883
+ type: "option",
1884
+ value: "Russian (Moldova)",
1885
+ label: "ru-MD",
1886
+ },
1887
+ {
1888
+ type: "option",
1889
+ value: "Russian (Russia)",
1890
+ label: "ru-RU",
1891
+ },
1892
+ {
1893
+ type: "option",
1894
+ value: "Russian (Ukraine)",
1895
+ label: "ru-UA",
1896
+ },
1897
+ {
1898
+ type: "option",
1899
+ value: "Rwa",
1900
+ label: "rwk",
1901
+ },
1902
+ {
1903
+ type: "option",
1904
+ value: "Rwa (Tanzania)",
1905
+ label: "rwk-TZ",
1906
+ },
1907
+ {
1908
+ type: "option",
1909
+ value: "Samoan",
1910
+ label: "sm",
1911
+ },
1912
+ {
1913
+ type: "option",
1914
+ value: "Samburu",
1915
+ label: "saq",
1916
+ },
1917
+ {
1918
+ type: "option",
1919
+ value: "Samburu (Kenya)",
1920
+ label: "saq-KE",
1921
+ },
1922
+ {
1923
+ type: "option",
1924
+ value: "Sango",
1925
+ label: "sg",
1926
+ },
1927
+ {
1928
+ type: "option",
1929
+ value: "Sango (Central African Republic)",
1930
+ label: "sg-CF",
1931
+ },
1932
+ {
1933
+ type: "option",
1934
+ value: "Sanskrit",
1935
+ label: "sa",
1936
+ },
1937
+ {
1938
+ type: "option",
1939
+ value: "Sardinian",
1940
+ label: "sc",
1941
+ },
1942
+ {
1943
+ type: "option",
1944
+ value: "Sena",
1945
+ label: "seh",
1946
+ },
1947
+ {
1948
+ type: "option",
1949
+ value: "Sena (Mozambique)",
1950
+ label: "seh-MZ",
1951
+ },
1952
+ {
1953
+ type: "option",
1954
+ value: "Serbian",
1955
+ label: "sr",
1956
+ },
1957
+ {
1958
+ type: "option",
1959
+ value: "Serbian (Cyrillic)",
1960
+ label: "sr-Cyrl",
1961
+ },
1962
+ {
1963
+ type: "option",
1964
+ value: "Serbian (Cyrillic, Bosnia and Herzegovina)",
1965
+ label: "sr-Cyrl-BA",
1966
+ },
1967
+ {
1968
+ type: "option",
1969
+ value: "Serbian (Cyrillic, Montenegro)",
1970
+ label: "sr-Cyrl-ME",
1971
+ },
1972
+ {
1973
+ type: "option",
1974
+ value: "Serbian (Cyrillic, Serbia)",
1975
+ label: "sr-Cyrl-RS",
1976
+ },
1977
+ {
1978
+ type: "option",
1979
+ value: "Serbian (Latin)",
1980
+ label: "sr-Latn",
1981
+ },
1982
+ {
1983
+ type: "option",
1984
+ value: "Serbian (Latin, Bosnia and Herzegovina)",
1985
+ label: "sr-Latn-BA",
1986
+ },
1987
+ {
1988
+ type: "option",
1989
+ value: "Serbian (Latin, Montenegro)",
1990
+ label: "sr-Latn-ME",
1991
+ },
1992
+ {
1993
+ type: "option",
1994
+ value: "Serbian (Latin, Serbia)",
1995
+ label: "sr-Latn-RS",
1996
+ },
1997
+ {
1998
+ type: "option",
1999
+ value: "Shona (Zimbabwe)",
2000
+ label: "sn-ZW",
2001
+ },
2002
+ {
2003
+ type: "option",
2004
+ value: "Shona",
2005
+ label: "sn",
2006
+ },
2007
+ {
2008
+ type: "option",
2009
+ value: "Sichuan Yi",
2010
+ label: "ii",
2011
+ },
2012
+ {
2013
+ type: "option",
2014
+ value: "Sichuan Yi (China)",
2015
+ label: "ii-CN",
2016
+ },
2017
+ {
2018
+ type: "option",
2019
+ value: "Sindhi",
2020
+ label: "sd",
2021
+ },
2022
+ {
2023
+ type: "option",
2024
+ value: "Sinhala",
2025
+ label: "si",
2026
+ },
2027
+ {
2028
+ type: "option",
2029
+ value: "Sinhala (Sri Lanka)",
2030
+ label: "si-LK",
2031
+ },
2032
+ {
2033
+ type: "option",
2034
+ value: "Slovak",
2035
+ label: "sk",
2036
+ },
2037
+ {
2038
+ type: "option",
2039
+ value: "Slovak (Slovakia)",
2040
+ label: "sk-SK",
2041
+ },
2042
+ {
2043
+ type: "option",
2044
+ value: "Slovenian",
2045
+ label: "sl",
2046
+ },
2047
+ {
2048
+ type: "option",
2049
+ value: "Slovenian (Slovenia)",
2050
+ label: "sl-SI",
2051
+ },
2052
+ {
2053
+ type: "option",
2054
+ value: "Soga (Uganda)",
2055
+ label: "xog-UG",
2056
+ },
2057
+ {
2058
+ type: "option",
2059
+ value: "Soga",
2060
+ label: "xog",
2061
+ },
2062
+ {
2063
+ type: "option",
2064
+ value: "Somali",
2065
+ label: "so",
2066
+ },
2067
+ {
2068
+ type: "option",
2069
+ value: "Somali (Djibouti)",
2070
+ label: "so-DJ",
2071
+ },
2072
+ {
2073
+ type: "option",
2074
+ value: "Somali (Ethiopia)",
2075
+ label: "so-ET",
2076
+ },
2077
+ {
2078
+ type: "option",
2079
+ value: "Somali (Kenya)",
2080
+ label: "so-KE",
2081
+ },
2082
+ {
2083
+ type: "option",
2084
+ value: "Somali (Somalia)",
2085
+ label: "so-SO",
2086
+ },
2087
+ {
2088
+ type: "option",
2089
+ value: "Southern Sotho",
2090
+ label: "st",
2091
+ },
2092
+ {
2093
+ type: "option",
2094
+ value: "South Ndebele",
2095
+ label: "nr",
2096
+ },
2097
+ {
2098
+ type: "option",
2099
+ value: "Spanish",
2100
+ label: "es",
2101
+ },
2102
+ {
2103
+ type: "option",
2104
+ value: "Spanish (Argentina)",
2105
+ label: "es-AR",
2106
+ },
2107
+ {
2108
+ type: "option",
2109
+ value: "Spanish (Bolivia)",
2110
+ label: "es-BO",
2111
+ },
2112
+ {
2113
+ type: "option",
2114
+ value: "Spanish (Chile)",
2115
+ label: "es-CL",
2116
+ },
2117
+ {
2118
+ type: "option",
2119
+ value: "Spanish (Colombia)",
2120
+ label: "es-CO",
2121
+ },
2122
+ {
2123
+ type: "option",
2124
+ value: "Spanish (Costa Rica)",
2125
+ label: "es-CR",
2126
+ },
2127
+ {
2128
+ type: "option",
2129
+ value: "Spanish (Dominican Republic)",
2130
+ label: "es-DO",
2131
+ },
2132
+ {
2133
+ type: "option",
2134
+ value: "Spanish (Ecuador)",
2135
+ label: "es-EC",
2136
+ },
2137
+ {
2138
+ type: "option",
2139
+ value: "Spanish (El Salvador)",
2140
+ label: "es-SV",
2141
+ },
2142
+ {
2143
+ type: "option",
2144
+ value: "Spanish (Equatorial Guinea)",
2145
+ label: "es-GQ",
2146
+ },
2147
+ {
2148
+ type: "option",
2149
+ value: "Spanish (Guatemala)",
2150
+ label: "es-GT",
2151
+ },
2152
+ {
2153
+ type: "option",
2154
+ value: "Spanish (Honduras)",
2155
+ label: "es-HN",
2156
+ },
2157
+ {
2158
+ type: "option",
2159
+ value: "Spanish (Latin America)",
2160
+ label: "es-419",
2161
+ },
2162
+ {
2163
+ type: "option",
2164
+ value: "Spanish (Mexico)",
2165
+ label: "es-MX",
2166
+ },
2167
+ {
2168
+ type: "option",
2169
+ value: "Spanish (Nicaragua)",
2170
+ label: "es-NI",
2171
+ },
2172
+ {
2173
+ type: "option",
2174
+ value: "Spanish (Panama)",
2175
+ label: "es-PA",
2176
+ },
2177
+ {
2178
+ type: "option",
2179
+ value: "Spanish (Paraguay)",
2180
+ label: "es-PY",
2181
+ },
2182
+ {
2183
+ type: "option",
2184
+ value: "Spanish (Peru)",
2185
+ label: "es-PE",
2186
+ },
2187
+ {
2188
+ type: "option",
2189
+ value: "Spanish (Puerto Rico)",
2190
+ label: "es-PR",
2191
+ },
2192
+ {
2193
+ type: "option",
2194
+ value: "Spanish (Spain)",
2195
+ label: "es-ES",
2196
+ },
2197
+ {
2198
+ type: "option",
2199
+ value: "Spanish (United States)",
2200
+ label: "es-US",
2201
+ },
2202
+ {
2203
+ type: "option",
2204
+ value: "Spanish (Uruguay)",
2205
+ label: "es-UY",
2206
+ },
2207
+ {
2208
+ type: "option",
2209
+ value: "Spanish (Venezuela)",
2210
+ label: "es-VE",
2211
+ },
2212
+ {
2213
+ type: "option",
2214
+ value: "Sundanese",
2215
+ label: "su",
2216
+ },
2217
+ {
2218
+ type: "option",
2219
+ value: "Swahili",
2220
+ label: "sw",
2221
+ },
2222
+ {
2223
+ type: "option",
2224
+ value: "Swahili (Kenya)",
2225
+ label: "sw-KE",
2226
+ },
2227
+ {
2228
+ type: "option",
2229
+ value: "Swahili (Tanzania)",
2230
+ label: "sw-TZ",
2231
+ },
2232
+ {
2233
+ type: "option",
2234
+ value: "Swati",
2235
+ label: "ss",
2236
+ },
2237
+ {
2238
+ type: "option",
2239
+ value: "Swedish",
2240
+ label: "sv",
2241
+ },
2242
+ {
2243
+ type: "option",
2244
+ value: "Swedish (Finland)",
2245
+ label: "sv-FI",
2246
+ },
2247
+ {
2248
+ type: "option",
2249
+ value: "Swedish (Sweden)",
2250
+ label: "sv-SE",
2251
+ },
2252
+ {
2253
+ type: "option",
2254
+ value: "Swiss German (Switzerland)",
2255
+ label: "gsw-CH",
2256
+ },
2257
+ {
2258
+ type: "option",
2259
+ value: "Swiss German",
2260
+ label: "gsw",
2261
+ },
2262
+ {
2263
+ type: "option",
2264
+ value: "Tachelhit",
2265
+ label: "shi",
2266
+ },
2267
+ {
2268
+ type: "option",
2269
+ value: "Tachelhit (Latin)",
2270
+ label: "shi-Latn",
2271
+ },
2272
+ {
2273
+ type: "option",
2274
+ value: "Tachelhit (Latin, Morocco)",
2275
+ label: "shi-Latn-MA",
2276
+ },
2277
+ {
2278
+ type: "option",
2279
+ value: "Tachelhit (Tifinagh)",
2280
+ label: "shi-Tfng",
2281
+ },
2282
+ {
2283
+ type: "option",
2284
+ value: "Tachelhit (Tifinagh, Morocco)",
2285
+ label: "shi-Tfng-MA",
2286
+ },
2287
+ {
2288
+ type: "option",
2289
+ value: "Tagalog",
2290
+ label: "tl",
2291
+ },
2292
+ {
2293
+ type: "option",
2294
+ value: "Tahitian",
2295
+ label: "ty",
2296
+ },
2297
+ {
2298
+ type: "option",
2299
+ value: "Taita",
2300
+ label: "dav",
2301
+ },
2302
+ {
2303
+ type: "option",
2304
+ value: "Taita (Kenya)",
2305
+ label: "dav-KE",
2306
+ },
2307
+ {
2308
+ type: "option",
2309
+ value: "Tajik",
2310
+ label: "tg",
2311
+ },
2312
+ {
2313
+ type: "option",
2314
+ value: "Tamil",
2315
+ label: "ta",
2316
+ },
2317
+ {
2318
+ type: "option",
2319
+ value: "Tamil (India)",
2320
+ label: "ta-IN",
2321
+ },
2322
+ {
2323
+ type: "option",
2324
+ value: "Tamil (Sri Lanka)",
2325
+ label: "ta-LK",
2326
+ },
2327
+ {
2328
+ type: "option",
2329
+ value: "Tatar",
2330
+ label: "tt",
2331
+ },
2332
+ {
2333
+ type: "option",
2334
+ value: "Telugu",
2335
+ label: "te",
2336
+ },
2337
+ {
2338
+ type: "option",
2339
+ value: "Telugu (India)",
2340
+ label: "te-IN",
2341
+ },
2342
+ {
2343
+ type: "option",
2344
+ value: "Teso",
2345
+ label: "teo",
2346
+ },
2347
+ {
2348
+ type: "option",
2349
+ value: "Teso (Kenya)",
2350
+ label: "teo-KE",
2351
+ },
2352
+ {
2353
+ type: "option",
2354
+ value: "Teso (Uganda)",
2355
+ label: "teo-UG",
2356
+ },
2357
+ {
2358
+ type: "option",
2359
+ value: "Thai",
2360
+ label: "th",
2361
+ },
2362
+ {
2363
+ type: "option",
2364
+ value: "Thai (Thailand)",
2365
+ label: "th-TH",
2366
+ },
2367
+ {
2368
+ type: "option",
2369
+ value: "Tibetan",
2370
+ label: "bo",
2371
+ },
2372
+ {
2373
+ type: "option",
2374
+ value: "Tibetan (China)",
2375
+ label: "bo-CN",
2376
+ },
2377
+ {
2378
+ type: "option",
2379
+ value: "Tibetan (India)",
2380
+ label: "bo-IN",
2381
+ },
2382
+ {
2383
+ type: "option",
2384
+ value: "Tigrinya (Eritrea)",
2385
+ label: "ti-ER",
2386
+ },
2387
+ {
2388
+ type: "option",
2389
+ value: "Tigrinya (Ethiopia)",
2390
+ label: "ti-ET",
2391
+ },
2392
+ {
2393
+ type: "option",
2394
+ value: "Tigrinya",
2395
+ label: "ti",
2396
+ },
2397
+ {
2398
+ type: "option",
2399
+ value: "Tonga (Tonga)",
2400
+ label: "to-TO",
2401
+ },
2402
+ {
2403
+ type: "option",
2404
+ value: "Tonga",
2405
+ label: "to",
2406
+ },
2407
+ {
2408
+ type: "option",
2409
+ value: "Tsonga",
2410
+ label: "ts",
2411
+ },
2412
+ {
2413
+ type: "option",
2414
+ value: "Tswana",
2415
+ label: "tn",
2416
+ },
2417
+ {
2418
+ type: "option",
2419
+ value: "Turkish",
2420
+ label: "tr",
2421
+ },
2422
+ {
2423
+ type: "option",
2424
+ value: "Turkish (Turkey)",
2425
+ label: "tr-TR",
2426
+ },
2427
+ {
2428
+ type: "option",
2429
+ value: "Turkmen",
2430
+ label: "tk",
2431
+ },
2432
+ {
2433
+ type: "option",
2434
+ value: "Twi",
2435
+ label: "tw",
2436
+ },
2437
+ {
2438
+ type: "option",
2439
+ value: "Uighur, Uyghur",
2440
+ label: "ug",
2441
+ },
2442
+ {
2443
+ type: "option",
2444
+ value: "Ukrainian",
2445
+ label: "uk",
2446
+ },
2447
+ {
2448
+ type: "option",
2449
+ value: "Ukrainian (Ukraine)",
2450
+ label: "uk-UA",
2451
+ },
2452
+ {
2453
+ type: "option",
2454
+ value: "Urdu",
2455
+ label: "ur",
2456
+ },
2457
+ {
2458
+ type: "option",
2459
+ value: "Urdu (India)",
2460
+ label: "ur-IN",
2461
+ },
2462
+ {
2463
+ type: "option",
2464
+ value: "Urdu (Pakistan)",
2465
+ label: "ur-PK",
2466
+ },
2467
+ {
2468
+ type: "option",
2469
+ value: "Uzbek",
2470
+ label: "uz",
2471
+ },
2472
+ {
2473
+ type: "option",
2474
+ value: "Uzbek (Arabic)",
2475
+ label: "uz-Arab",
2476
+ },
2477
+ {
2478
+ type: "option",
2479
+ value: "Uzbek (Arabic, Afghanistan)",
2480
+ label: "uz-Arab-AF",
2481
+ },
2482
+ {
2483
+ type: "option",
2484
+ value: "Uzbek (Cyrillic)",
2485
+ label: "uz-Cyrl",
2486
+ },
2487
+ {
2488
+ type: "option",
2489
+ value: "Uzbek (Cyrillic, Uzbekistan)",
2490
+ label: "uz-Cyrl-UZ",
2491
+ },
2492
+ {
2493
+ type: "option",
2494
+ value: "Uzbek (Latin)",
2495
+ label: "uz-Latn",
2496
+ },
2497
+ {
2498
+ type: "option",
2499
+ value: "Uzbek (Latin, Uzbekistan)",
2500
+ label: "uz-Latn-UZ",
2501
+ },
2502
+ {
2503
+ type: "option",
2504
+ value: "Venda",
2505
+ label: "ve",
2506
+ },
2507
+ {
2508
+ type: "option",
2509
+ value: "Vietnamese (Vietnam)",
2510
+ label: "vi-VN",
2511
+ },
2512
+ {
2513
+ type: "option",
2514
+ value: "Vietnamese",
2515
+ label: "vi",
2516
+ },
2517
+ {
2518
+ type: "option",
2519
+ value: "Volapük",
2520
+ label: "vo",
2521
+ },
2522
+ {
2523
+ type: "option",
2524
+ value: "Vunjo (Tanzania)",
2525
+ label: "vun-TZ",
2526
+ },
2527
+ {
2528
+ type: "option",
2529
+ value: "Vunjo",
2530
+ label: "vun",
2531
+ },
2532
+ {
2533
+ type: "option",
2534
+ value: "Walloon",
2535
+ label: "wa",
2536
+ },
2537
+ {
2538
+ type: "option",
2539
+ value: "Welsh (United Kingdom)",
2540
+ label: "cy-GB",
2541
+ },
2542
+ {
2543
+ type: "option",
2544
+ value: "Welsh",
2545
+ label: "cy",
2546
+ },
2547
+ {
2548
+ type: "option",
2549
+ value: "Western Frisian",
2550
+ label: "fy",
2551
+ },
2552
+ {
2553
+ type: "option",
2554
+ value: "Wolof",
2555
+ label: "wo",
2556
+ },
2557
+ {
2558
+ type: "option",
2559
+ value: "Xhosa",
2560
+ label: "xh",
2561
+ },
2562
+ {
2563
+ type: "option",
2564
+ value: "Yiddish",
2565
+ label: "yi",
2566
+ },
2567
+ {
2568
+ type: "option",
2569
+ value: "Yoruba (Nigeria)",
2570
+ label: "yo-NG",
2571
+ },
2572
+ {
2573
+ type: "option",
2574
+ value: "Yoruba",
2575
+ label: "yo",
2576
+ },
2577
+ {
2578
+ type: "option",
2579
+ value: "Zhuang, Chuang",
2580
+ label: "za",
2581
+ },
2582
+ {
2583
+ type: "option",
2584
+ value: "Zulu",
2585
+ label: "zu",
2586
+ },
2587
+ {
2588
+ type: "option",
2589
+ value: "Zulu (South Africa)",
2590
+ label: "zu-ZA",
2591
+ },
2592
+ ];