forked from SolidOS/solid-panes
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcodes.html
More file actions
4137 lines (4134 loc) · 159 KB
/
Copy pathcodes.html
File metadata and controls
4137 lines (4134 loc) · 159 KB
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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<html class="client-nojs" lang="en" dir="ltr" xmlns=
"http://www.w3.org/1999/xhtml">
<head>
<meta name="generator" content=
"HTML Tidy for Mac OS X (vers 31 October 2006 - Apple Inc. build 16.1), see www.w3.org" />
<meta charset="UTF-8" />
<title>List of ISO 639-1 codes - Wikipedia</title>
<script type="text/javascript">
//<![CDATA[
document.documentElement.className=document.documentElement.className.replace(/(^|\s)client-nojs(\s|$)/,"$1client-js$2");RLCONF={"wgCanonicalNamespace":"","wgCanonicalSpecialPageName":!1,"wgNamespaceNumber":0,"wgPageName":"List_of_ISO_639-1_codes","wgTitle":"List of ISO 639-1 codes","wgCurRevisionId":908451105,"wgRevisionId":908451105,"wgArticleId":5611796,"wgIsArticle":!0,"wgIsRedirect":!1,"wgAction":"view","wgUserName":null,"wgUserGroups":["*"],"wgCategories":["Articles with short description","Articles needing additional references from April 2011","All articles needing additional references","Articles containing Chinese-language text","Articles containing Interlingue-language text","Articles containing Japanese-language text","Articles containing Kashmiri-language text","Articles containing Korean-language text","Articles containing Kurdish-language text","Articles containing Malay-language text","Articles containing Punjabi-language text",
"Articles containing Sindhi-language text","Articles containing Tajik-language text","Articles containing Tatar-language text","Articles containing Uighur-language text","Articles containing Uzbek-language text","ISO 639","Identifiers","Unique identifiers"],"wgBreakFrames":!1,"wgPageContentLanguage":"en","wgPageContentModel":"wikitext","wgSeparatorTransformTable":["",""],"wgDigitTransformTable":["",""],"wgDefaultDateFormat":"dmy","wgMonthNames":["","January","February","March","April","May","June","July","August","September","October","November","December"],"wgMonthNamesShort":["","Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],"wgRelevantPageName":"List_of_ISO_639-1_codes","wgRelevantArticleId":5611796,"wgRequestId":"XT9ULQpAAEIAAE@B4LIAAADW","wgCSPNonce":!1,"wgIsProbablyEditable":!0,"wgRelevantPageIsProbablyEditable":!0,"wgRestrictionEdit":[],"wgRestrictionMove":[],"wgMediaViewerOnClick":!0,"wgMediaViewerEnabledByDefault":!0,
"wgPopupsReferencePreviews":!1,"wgPopupsConflictsWithNavPopupGadget":!1,"wgVisualEditor":{"pageLanguageCode":"en","pageLanguageDir":"ltr","pageVariantFallbacks":"en"},"wgMFDisplayWikibaseDescriptions":{"search":!0,"nearby":!0,"watchlist":!0,"tagline":!1},"wgWMESchemaEditAttemptStepOversample":!1,"wgPoweredByHHVM":!0,"wgULSCurrentAutonym":"English","wgNoticeProject":"wikipedia","wgWikibaseItemId":"Q917906","wgCentralAuthMobileDomain":!1,"wgEditSubmitButtonLabelPublish":!0};RLSTATE={"ext.gadget.charinsert-styles":"ready","ext.globalCssJs.user.styles":"ready","ext.globalCssJs.site.styles":"ready","site.styles":"ready","noscript":"ready","user.styles":"ready","ext.globalCssJs.user":"ready","ext.globalCssJs.site":"ready","user":"ready","user.options":"ready","user.tokens":"loading","ext.cite.styles":"ready","mediawiki.legacy.shared":"ready","mediawiki.legacy.commonPrint":"ready","jquery.tablesorter.styles":"ready","wikibase.client.init":"ready",
"ext.visualEditor.desktopArticleTarget.noscript":"ready","ext.uls.interlanguage":"ready","ext.wikimediaBadges":"ready","ext.3d.styles":"ready","mediawiki.skinning.interface":"ready","skins.vector.styles":"ready"};RLPAGEMODULES=["ext.cite.ux-enhancements","site","mediawiki.page.startup","mediawiki.page.ready","jquery.tablesorter","mediawiki.searchSuggest","ext.gadget.teahouse","ext.gadget.ReferenceTooltips","ext.gadget.watchlist-notice","ext.gadget.DRN-wizard","ext.gadget.charinsert","ext.gadget.refToolbar","ext.gadget.extra-toolbar-buttons","ext.gadget.switcher","ext.centralauth.centralautologin","mmv.head","mmv.bootstrap.autostart","ext.popups","ext.visualEditor.desktopArticleTarget.init","ext.visualEditor.targetLoader","ext.eventLogging","ext.wikimediaEvents","ext.navigationTiming","ext.uls.compactlinks","ext.uls.interface","ext.quicksurveys.init","ext.centralNotice.geoIP","ext.centralNotice.startUp","skins.vector.js"];
//]]>
</script>
<script type="text/javascript">
//<![CDATA[
(RLQ=window.RLQ||[]).push(function(){mw.loader.implement("user.tokens@0tffind",function($,jQuery,require,module){/*@nomin*/mw.user.tokens.set({"editToken":"+\\","patrolToken":"+\\","watchToken":"+\\","csrfToken":"+\\"});
});});
//]]>
</script>
<link rel="stylesheet" href=
"/w/load.php?lang=en&modules=ext.3d.styles%7Cext.cite.styles%7Cext.uls.interlanguage%7Cext.visualEditor.desktopArticleTarget.noscript%7Cext.wikimediaBadges%7Cjquery.tablesorter.styles%7Cmediawiki.legacy.commonPrint%2Cshared%7Cmediawiki.skinning.interface%7Cskins.vector.styles%7Cwikibase.client.init&only=styles&skin=vector"
type="text/css" />
<script async="" src=
"/w/load.php?lang=en&modules=startup&only=scripts&raw=1&skin=vector"
type="text/javascript">
</script>
<meta name="ResourceLoaderDynamicStyles" content="" />
<link rel="stylesheet" href=
"/w/load.php?lang=en&modules=ext.gadget.charinsert-styles&only=styles&skin=vector"
type="text/css" />
<link rel="stylesheet" href=
"/w/load.php?lang=en&modules=site.styles&only=styles&skin=vector"
type="text/css" />
<meta name="generator" content="MediaWiki 1.34.0-wmf.15" />
<meta name="referrer" content="origin" />
<meta name="referrer" content="origin-when-crossorigin" />
<meta name="referrer" content="origin-when-cross-origin" />
<link rel="alternate" href=
"android-app://org.wikipedia/http/en.m.wikipedia.org/wiki/List_of_ISO_639-1_codes" />
<link rel="alternate" type="application/x-wiki" title=
"Edit this page" href=
"/w/index.php?title=List_of_ISO_639-1_codes&action=edit" />
<link rel="edit" title="Edit this page" href=
"/w/index.php?title=List_of_ISO_639-1_codes&action=edit" />
<link rel="apple-touch-icon" href=
"/static/apple-touch/wikipedia.png" />
<link rel="shortcut icon" href="/static/favicon/wikipedia.ico" />
<link rel="search" type="application/opensearchdescription+xml"
href="/w/opensearch_desc.php" title="Wikipedia (en)" />
<link rel="EditURI" type="application/rsd+xml" href=
"//en.wikipedia.org/w/api.php?action=rsd" />
<link rel="license" href=
"//creativecommons.org/licenses/by-sa/3.0/" />
<link rel="canonical" href=
"https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes" />
<link rel="dns-prefetch" href="//login.wikimedia.org" />
<link rel="dns-prefetch" href="//meta.wikimedia.org" />
<!--[if lt IE 9]><script src="/w/resources/lib/html5shiv/html5shiv.js"></script><![endif]-->
<style data-mw-deduplicate="TemplateStyles:r886058088" type=
"text/css">
/*<![CDATA[*/
.mw-parser-output cite.citation{font-style:inherit}.mw-parser-output .citation q{quotes:"\"""\"""'""'"}.mw-parser-output .citation .cs1-lock-free a{background:url("//upload.wikimedia.org/wikipedia/commons/thumb/6/65/Lock-green.svg/9px-Lock-green.svg.png")no-repeat;background-position:right .1em center}.mw-parser-output .citation .cs1-lock-limited a,.mw-parser-output .citation .cs1-lock-registration a{background:url("//upload.wikimedia.org/wikipedia/commons/thumb/d/d6/Lock-gray-alt-2.svg/9px-Lock-gray-alt-2.svg.png")no-repeat;background-position:right .1em center}.mw-parser-output .citation .cs1-lock-subscription a{background:url("//upload.wikimedia.org/wikipedia/commons/thumb/a/aa/Lock-red-alt-2.svg/9px-Lock-red-alt-2.svg.png")no-repeat;background-position:right .1em center}.mw-parser-output .cs1-subscription,.mw-parser-output .cs1-registration{color:#555}.mw-parser-output .cs1-subscription span,.mw-parser-output .cs1-registration span{border-bottom:1px dotted;cursor:help}.mw-parser-output .cs1-ws-icon a{background:url("//upload.wikimedia.org/wikipedia/commons/thumb/4/4c/Wikisource-logo.svg/12px-Wikisource-logo.svg.png")no-repeat;background-position:right .1em center}.mw-parser-output code.cs1-code{color:inherit;background:inherit;border:inherit;padding:inherit}.mw-parser-output .cs1-hidden-error{display:none;font-size:100%}.mw-parser-output .cs1-visible-error{font-size:100%}.mw-parser-output .cs1-maint{display:none;color:#33aa33;margin-left:0.3em}.mw-parser-output .cs1-subscription,.mw-parser-output .cs1-registration,.mw-parser-output .cs1-format{font-size:95%}.mw-parser-output .cs1-kern-left,.mw-parser-output .cs1-kern-wl-left{padding-left:0.2em}.mw-parser-output .cs1-kern-right,.mw-parser-output .cs1-kern-wl-right{padding-right:0.2em}
/*]]>*/
</style>
<link rel="mw-deduplicated-inline-style" href=
"mw-data:TemplateStyles:r886058088" />
</head>
<body class=
"mediawiki ltr sitedir-ltr mw-hide-empty-elt ns-0 ns-subject mw-editable page-List_of_ISO_639-1_codes rootpage-List_of_ISO_639-1_codes skin-vector action-view">
<div id="mw-page-base" class="noprint"></div>
<div id="mw-head-base" class="noprint"></div>
<div id="content" class="mw-body" role="main"><a id="top"></a>
<div id="siteNotice" class="mw-body-content">
<!-- CentralNotice --></div>
<div class="mw-indicators mw-body-content"></div>
<h1 id="firstHeading" class="firstHeading" lang="en">List of ISO
639-1 codes</h1>
<div id="bodyContent" class="mw-body-content">
<div id="siteSub" class="noprint">From Wikipedia, the free
encyclopedia</div>
<div id="contentSub"></div>
<div id="jump-to-nav"></div>
<a class="mw-jump-link" href="#mw-head">Jump to navigation</a>
<a class="mw-jump-link" href="#p-search">Jump to search</a>
<div id="mw-content-text" lang="en" dir="ltr" class=
"mw-content-ltr">
<div class="mw-parser-output">
<div class="shortdescription nomobile noexcerpt noprint searchaux"
style="display:none">Wikimedia list article</div>
<table class=
"box-More_citations_needed plainlinks metadata ambox ambox-content ambox-Refimprove"
role="presentation">
<tbody>
<tr>
<td class="mbox-image">
<div style="width:52px"><a href="/wiki/File:Question_book-new.svg"
class="image"><img alt="" src=
"//upload.wikimedia.org/wikipedia/en/thumb/9/99/Question_book-new.svg/50px-Question_book-new.svg.png"
decoding="async" width="50" height="39" srcset=
"//upload.wikimedia.org/wikipedia/en/thumb/9/99/Question_book-new.svg/75px-Question_book-new.svg.png 1.5x, //upload.wikimedia.org/wikipedia/en/thumb/9/99/Question_book-new.svg/100px-Question_book-new.svg.png 2x"
data-file-width="512" data-file-height="399" /></a></div>
</td>
<td class="mbox-text">
<div class="mbox-text-span">This article <b>needs additional
citations for <a href="/wiki/Wikipedia:Verifiability" title=
"Wikipedia:Verifiability">verification</a></b>. <span class=
"hide-when-compact">Please help <a class="external text" href=
"//en.wikipedia.org/w/index.php?title=List_of_ISO_639-1_codes&action=edit">
improve this article</a> by <a href=
"/wiki/Help:Introduction_to_referencing_with_Wiki_Markup/1" title=
"Help:Introduction to referencing with Wiki Markup/1">adding
citations to reliable sources</a>. Unsourced material may be
challenged and removed.<br />
<small><span class="plainlinks"><i>Find sources:</i> <a rel=
"nofollow" class="external text" href=
"//www.google.com/search?as_eq=wikipedia&q=%22List+of+ISO+639-1+codes%22">"List
of ISO 639-1 codes"</a> – <a rel=
"nofollow" class="external text" href=
"//www.google.com/search?tbm=nws&q=%22List+of+ISO+639-1+codes%22+-wikipedia">news</a> <b>·</b>
<a rel="nofollow" class="external text" href=
"//www.google.com/search?&q=%22List+of+ISO+639-1+codes%22+site:news.google.com/newspapers&source=newspapers">
newspapers</a> <b>·</b> <a rel="nofollow" class=
"external text" href=
"//www.google.com/search?tbs=bks:1&q=%22List+of+ISO+639-1+codes%22+-wikipedia">
books</a> <b>·</b> <a rel="nofollow" class=
"external text" href=
"//scholar.google.com/scholar?q=%22List+of+ISO+639-1+codes%22">scholar</a> <b>·</b>
<a rel="nofollow" class="external text" href=
"https://www.jstor.org/action/doBasicSearch?Query=%22List+of+ISO+639-1+codes%22&acc=on&wc=on">
JSTOR</a></span></small></span> <small class=
"date-container"><i>(<span class="date">April
2011</span>)</i></small> <small class=
"hide-when-compact"><i>(<a href=
"/wiki/Help:Maintenance_template_removal" title=
"Help:Maintenance template removal">Learn how and when to remove
this template message</a>)</i></small></div>
</td>
</tr>
</tbody>
</table>
<p>ISO 639 is a standardized nomenclature used to classify
languages. Each language is assigned a two-letter (639-1) and
three-letter (639-2 and 639-3), lowercase abbreviation, amended in
later versions of the nomenclature.</p>
<p>This table lists all of:</p>
<ul>
<li><a href="/wiki/ISO_639-1" title="ISO 639-1">ISO 639-1</a>:
two-letter codes, one per language for <a href=
"/wiki/ISO_639_macrolanguage" title="ISO 639 macrolanguage">ISO 639
macrolanguage</a></li>
</ul>
<p>And some of:</p>
<ul>
<li><a href="/wiki/ISO_639-2" title="ISO 639-2">ISO 639-2/T</a>:
three-letter codes, for the same languages as 639-1</li>
<li><a href="/wiki/ISO_639-2" title="ISO 639-2">ISO 639-2/B</a>:
three-letter codes, mostly the same as 639-2/T, but with some codes
derived from English names rather than native names of languages
(in the following table, these differing codes are highlighted in
<b><a href="/wiki/Boldface" class="mw-redirect" title=
"Boldface">boldface</a></b>)</li>
<li><a href="/wiki/ISO_639-3" title="ISO 639-3">ISO 639-3</a>:
three-letter codes, the same as 639-2/T for languages, but with
distinct codes for each variety of an ISO 639 macrolanguage</li>
</ul>
<p>Note: Colors on the leftmost column represent the language
family mentioned in second column.</p>
<table class="wikitable sortable" id="Table">
<tbody>
<tr style="background-color:#EFEFEF">
<th class="unsortable"></th>
<th><a href="/wiki/Language_family" title=
"Language family">Language family</a></th>
<th>ISO language name</th>
<th>Native name (endonym)</th>
<th><a href="/wiki/ISO_639-1" title="ISO 639-1">639-1</a></th>
<th><a href="/wiki/ISO_639-2" title="ISO 639-2">639-2</a>/T</th>
<th>639-2/B</th>
<th><a href="/wiki/ISO_639-3" title="ISO 639-3">639-3</a></th>
<th>Notes</th>
</tr>
<tr>
<td style="background-color:#ACE1AF;width:#ACE1AF;"></td>
<td><a href="/wiki/Northwest_Caucasian_languages" title=
"Northwest Caucasian languages">Northwest Caucasian</a></td>
<td><a href="/wiki/Abkhazian_language" class="mw-redirect" title=
"Abkhazian language">Abkhazian</a></td>
<td lang="ab">
аҧÑуа
бызшәа,
аҧÑшәа</td>
<td><span class="plainlinks"><a rel="nofollow" class=
"external text" href=
"https://www.loc.gov/standards/iso639-2/php/langcodes_name.php?iso_639_1=ab">
ab</a></span></td>
<td>abk</td>
<td>abk</td>
<td>abk</td>
<td>also known as Abkhaz</td>
</tr>
<tr>
<td style="background-color:#FFFF00;"></td>
<td><a href="/wiki/Afro-Asiatic_languages" class="mw-redirect"
title="Afro-Asiatic languages">Afro-Asiatic</a></td>
<td><a href="/wiki/Afar_language" title=
"Afar language">Afar</a></td>
<td lang="aa">Afaraf</td>
<td><span class="plainlinks"><a rel="nofollow" class=
"external text" href=
"https://www.loc.gov/standards/iso639-2/php/langcodes_name.php?iso_639_1=aa">
aa</a></span></td>
<td>aar</td>
<td>aar</td>
<td>aar</td>
<td></td>
</tr>
<tr>
<td style="background-color:#66FF00;"></td>
<td><span class="nowrap"><a href="/wiki/Indo-European_languages"
title="Indo-European languages">Indo-European</a></span></td>
<td><a href="/wiki/Afrikaans_language" class="mw-redirect" title=
"Afrikaans language">Afrikaans</a></td>
<td lang="af">Afrikaans</td>
<td><span class="plainlinks"><a rel="nofollow" class=
"external text" href=
"https://www.loc.gov/standards/iso639-2/php/langcodes_name.php?iso_639_1=af">
af</a></span></td>
<td>afr</td>
<td>afr</td>
<td>afr</td>
<td></td>
</tr>
<tr>
<td style="background-color:#FFA500;"></td>
<td><a href="/wiki/Niger%E2%80%93Congo_languages" title=
"Niger–Congo languages">Niger–Congo</a></td>
<td><a href="/wiki/Akan_language" title=
"Akan language">Akan</a></td>
<td lang="ak">Akan</td>
<td><span class="plainlinks"><a rel="nofollow" class=
"external text" href=
"https://www.loc.gov/standards/iso639-2/php/langcodes_name.php?iso_639_1=ak">
ak</a></span></td>
<td>aka</td>
<td>aka</td>
<td>aka + <a href="/wiki/ISO_639_macrolanguage#aka" title=
"ISO 639 macrolanguage">2</a></td>
<td><a href="/wiki/Macrolanguage" class="mw-redirect" title=
"Macrolanguage">macrolanguage</a>, <a href="/wiki/Twi_language"
class="mw-redirect" title="Twi language">Twi</a> is [tw/twi],
<a href="/wiki/Fanti_language" class="mw-redirect" title=
"Fanti language">Fanti</a> is [fat]</td>
</tr>
<tr>
<td style="background-color:#66FF00;"></td>
<td><a href="/wiki/Indo-European_languages" title=
"Indo-European languages">Indo-European</a></td>
<td><a href="/wiki/Albanian_language" title=
"Albanian language">Albanian</a></td>
<td lang="sq">Shqip</td>
<td><span class="plainlinks"><a rel="nofollow" class=
"external text" href=
"https://www.loc.gov/standards/iso639-2/php/langcodes_name.php?iso_639_1=sq">
sq</a></span></td>
<td>sqi</td>
<td><b>alb</b></td>
<td>sqi + <a href="/wiki/ISO_639_macrolanguage#sqi" title=
"ISO 639 macrolanguage">4</a></td>
<td><a href="/wiki/Macrolanguage" class="mw-redirect" title=
"Macrolanguage">macrolanguage</a>, "Albanian Phylozone" in
639-6</td>
</tr>
<tr>
<td style="background-color:#FFFF00;"></td>
<td><a href="/wiki/Afro-Asiatic_languages" class="mw-redirect"
title="Afro-Asiatic languages">Afro-Asiatic</a></td>
<td><a href="/wiki/Amharic_language" class="mw-redirect" title=
"Amharic language">Amharic</a></td>
<td lang="am">
አማርኛ</td>
<td><span class="plainlinks"><a rel="nofollow" class=
"external text" href=
"https://www.loc.gov/standards/iso639-2/php/langcodes_name.php?iso_639_1=am">
am</a></span></td>
<td>amh</td>
<td>amh</td>
<td>amh</td>
<td></td>
</tr>
<tr>
<td style="background-color:#FFFF00;"></td>
<td><a href="/wiki/Afro-Asiatic_languages" class="mw-redirect"
title="Afro-Asiatic languages">Afro-Asiatic</a></td>
<td><a href="/wiki/Arabic_language" class="mw-redirect" title=
"Arabic language">Arabic</a></td>
<td lang="ar" dir="rtl">
<div style="float: left;">
العربية</div>
</td>
<td><span class="plainlinks"><a rel="nofollow" class=
"external text" href=
"https://www.loc.gov/standards/iso639-2/php/langcodes_name.php?iso_639_1=ar">
ar</a></span></td>
<td>ara</td>
<td>ara</td>
<td><span class="nowrap">ara + <a href=
"/wiki/ISO_639_macrolanguage#ara" title=
"ISO 639 macrolanguage">30</a></span></td>
<td><a href="/wiki/Macrolanguage" class="mw-redirect" title=
"Macrolanguage">macrolanguage</a>, <a href="/wiki/Standard_Arabic"
class="mw-redirect" title="Standard Arabic">Standard Arabic</a> is
[arb]</td>
</tr>
<tr>
<td style="background-color:#66FF00;"></td>
<td><a href="/wiki/Indo-European_languages" title=
"Indo-European languages">Indo-European</a></td>
<td><a href="/wiki/Aragonese_language" title=
"Aragonese language">Aragonese</a></td>
<td lang="an">aragonés</td>
<td><span class="plainlinks"><a rel="nofollow" class=
"external text" href=
"https://www.loc.gov/standards/iso639-2/php/langcodes_name.php?iso_639_1=an">
an</a></span></td>
<td>arg</td>
<td>arg</td>
<td>arg</td>
<td></td>
</tr>
<tr>
<td style="background-color:#66FF00;"></td>
<td><a href="/wiki/Indo-European_languages" title=
"Indo-European languages">Indo-European</a></td>
<td><a href="/wiki/Armenian_language" title=
"Armenian language">Armenian</a></td>
<td lang="hy">
Õ€Õ¡ÕµÕ¥Ö€Õ¥Õ¶</td>
<td><span class="plainlinks"><a rel="nofollow" class=
"external text" href=
"https://www.loc.gov/standards/iso639-2/php/langcodes_name.php?iso_639_1=hy">
hy</a></span></td>
<td>hye</td>
<td><b>arm</b></td>
<td>hye</td>
<td>also known as
Õ€Õ¡ÕµÕ¥Ö€Õ§Õ¶;
ISO 639-3 code "hye" is for Eastern Armenian, "hyw" is for Western
Armenian, and "xcl" is for Classical Armenian</td>
</tr>
<tr>
<td style="background-color:#66FF00;"></td>
<td><a href="/wiki/Indo-European_languages" title=
"Indo-European languages">Indo-European</a></td>
<td><a href="/wiki/Assamese_language" title=
"Assamese language">Assamese</a></td>
<td lang="as">
অসমীয়া</td>
<td><span class="plainlinks"><a rel="nofollow" class=
"external text" href=
"https://www.loc.gov/standards/iso639-2/php/langcodes_name.php?iso_639_1=as">
as</a></span></td>
<td>asm</td>
<td>asm</td>
<td>asm</td>
<td></td>
</tr>
<tr>
<td style="background-color:#ACE1AF;"></td>
<td><a href="/wiki/Northeast_Caucasian_languages" title=
"Northeast Caucasian languages">Northeast Caucasian</a></td>
<td><a href="/wiki/Avar_language" title=
"Avar language">Avaric</a></td>
<td lang="av">авар
мацӀ,
магӀарул
мацӀ</td>
<td><span class="plainlinks"><a rel="nofollow" class=
"external text" href=
"https://www.loc.gov/standards/iso639-2/php/langcodes_name.php?iso_639_1=av">
av</a></span></td>
<td>ava</td>
<td>ava</td>
<td>ava</td>
<td>also known as Avar</td>
</tr>
<tr>
<td style="background-color:#66FF00;"></td>
<td><a href="/wiki/Indo-European_languages" title=
"Indo-European languages">Indo-European</a></td>
<td><a href="/wiki/Avestan_language" class="mw-redirect" title=
"Avestan language">Avestan</a></td>
<td lang="ae">avesta</td>
<td><span class="plainlinks"><a rel="nofollow" class=
"external text" href=
"https://www.loc.gov/standards/iso639-2/php/langcodes_name.php?iso_639_1=ae">
ae</a></span></td>
<td>ave</td>
<td>ave</td>
<td>ave</td>
<td><a href="/wiki/Ancient_languages" class="mw-redirect" title=
"Ancient languages">ancient</a></td>
</tr>
<tr>
<td style="background-color:#ADD8E6;"></td>
<td><a href="/wiki/Aymaran_languages" title=
"Aymaran languages">Aymaran</a></td>
<td><a href="/wiki/Aymara_language" title=
"Aymara language">Aymara</a></td>
<td lang="ay">aymar aru</td>
<td><span class="plainlinks"><a rel="nofollow" class=
"external text" href=
"https://www.loc.gov/standards/iso639-2/php/langcodes_name.php?iso_639_1=ay">
ay</a></span></td>
<td>aym</td>
<td>aym</td>
<td>aym + <a href="/wiki/ISO_639_macrolanguage#aym" title=
"ISO 639 macrolanguage">2</a></td>
<td><a href="/wiki/Macrolanguage" class="mw-redirect" title=
"Macrolanguage">macrolanguage</a></td>
</tr>
<tr>
<td style="background-color:#ADFF2F;"></td>
<td><a href="/wiki/Turkic_languages" title=
"Turkic languages">Turkic</a></td>
<td><a href="/wiki/Azerbaijani_language" title=
"Azerbaijani language">Azerbaijani</a></td>
<td lang="az">azərbaycan dili</td>
<td><span class="plainlinks"><a rel="nofollow" class=
"external text" href=
"https://www.loc.gov/standards/iso639-2/php/langcodes_name.php?iso_639_1=az">
az</a></span></td>
<td>aze</td>
<td>aze</td>
<td>aze + <a href="/wiki/ISO_639_macrolanguage#aze" title=
"ISO 639 macrolanguage">2</a></td>
<td><a href="/wiki/Macrolanguage" class="mw-redirect" title=
"Macrolanguage">macrolanguage</a></td>
</tr>
<tr>
<td style="background-color:#FFA500;"></td>
<td><a href="/wiki/Niger%E2%80%93Congo_languages" title=
"Niger–Congo languages">Niger–Congo</a></td>
<td><a href="/wiki/Bambara_language" title=
"Bambara language">Bambara</a></td>
<td lang="bm">bamanankan</td>
<td><span class="plainlinks"><a rel="nofollow" class=
"external text" href=
"https://www.loc.gov/standards/iso639-2/php/langcodes_name.php?iso_639_1=bm">
bm</a></span></td>
<td>bam</td>
<td>bam</td>
<td>bam</td>
<td></td>
</tr>
<tr>
<td style="background-color:#ADFF2F;"></td>
<td><a href="/wiki/Turkic_languages" title=
"Turkic languages">Turkic</a></td>
<td><a href="/wiki/Bashkir_language" title=
"Bashkir language">Bashkir</a></td>
<td lang="ba">
башҡорт
теле</td>
<td><span class="plainlinks"><a rel="nofollow" class=
"external text" href=
"https://www.loc.gov/standards/iso639-2/php/langcodes_name.php?iso_639_1=ba">
ba</a></span></td>
<td>bak</td>
<td>bak</td>
<td>bak</td>
<td></td>
</tr>
<tr>
<td style="background-color:#A9A9A9;"></td>
<td><a href="/wiki/Language_isolate" title=
"Language isolate">Language isolate</a></td>
<td><a href="/wiki/Basque_language" title=
"Basque language">Basque</a></td>
<td lang="eu">euskara, euskera</td>
<td><span class="plainlinks"><a rel="nofollow" class=
"external text" href=
"https://www.loc.gov/standards/iso639-2/php/langcodes_name.php?iso_639_1=eu">
eu</a></span></td>
<td>eus</td>
<td><b>baq</b></td>
<td>eus</td>
<td></td>
</tr>
<tr>
<td style="background-color:#66FF00;"></td>
<td><a href="/wiki/Indo-European_languages" title=
"Indo-European languages">Indo-European</a></td>
<td><a href="/wiki/Belarusian_language" title=
"Belarusian language">Belarusian</a></td>
<td lang="be">
беларуÑкаÑ
мова</td>
<td><span class="plainlinks"><a rel="nofollow" class=
"external text" href=
"https://www.loc.gov/standards/iso639-2/php/langcodes_name.php?iso_639_1=be">
be</a></span></td>
<td>bel</td>
<td>bel</td>
<td>bel</td>
<td></td>
</tr>
<tr>
<td style="background-color:#66FF00;"></td>
<td><a href="/wiki/Indo-European_languages" title=
"Indo-European languages">Indo-European</a></td>
<td><a href="/wiki/Bengali_language" title=
"Bengali language">Bengali</a></td>
<td lang="bn">
বাংলা</td>
<td><span class="plainlinks"><a rel="nofollow" class=
"external text" href=
"https://www.loc.gov/standards/iso639-2/php/langcodes_name.php?iso_639_1=bn">
bn</a></span></td>
<td>ben</td>
<td>ben</td>
<td>ben</td>
<td>also known as Bangla</td>
</tr>
<tr>
<td style="background-color:#66FF00;"></td>
<td><a href="/wiki/Indo-European_languages" title=
"Indo-European languages">Indo-European</a></td>
<td><span class="nowrap"><a href="/wiki/Bihari_languages" title=
"Bihari languages">Bihari languages</a></span></td>
<td lang="bh">
भोजपà¥à¤°à¥€</td>
<td><span class="plainlinks"><a rel="nofollow" class=
"external text" href=
"https://www.loc.gov/standards/iso639-2/php/langcodes_name.php?iso_639_1=bh">
bh</a></span></td>
<td>bih</td>
<td>bih</td>
<td></td>
<td>collective language code for <a href="/wiki/Bhojpuri_language"
title="Bhojpuri language">Bhojpuri</a>, <a href=
"/wiki/Magahi_language" title="Magahi language">Magahi</a>, and
<a href="/wiki/Maithili_language" title=
"Maithili language">Maithili</a></td>
</tr>
<tr>
<td style="background-color:#D2B48C;"></td>
<td><a href="/wiki/Creole_languages" class="mw-redirect" title=
"Creole languages">Creole</a></td>
<td><a href="/wiki/Bislama_language" class="mw-redirect" title=
"Bislama language">Bislama</a></td>
<td lang="bi">Bislama</td>
<td><span class="plainlinks"><a rel="nofollow" class=
"external text" href=
"https://www.loc.gov/standards/iso639-2/php/langcodes_name.php?iso_639_1=bi">
bi</a></span></td>
<td>bis</td>
<td>bis</td>
<td>bis</td>
<td>Language formed from English and Ni-Vanuatu, with some French
influence.</td>
</tr>
<tr>
<td style="background-color:#66FF00;"></td>
<td><a href="/wiki/Indo-European_languages" title=
"Indo-European languages">Indo-European</a></td>
<td><a href="/wiki/Bosnian_language" title=
"Bosnian language">Bosnian</a></td>
<td lang="bs">bosanski jezik</td>
<td><span class="plainlinks"><a rel="nofollow" class=
"external text" href=
"https://www.loc.gov/standards/iso639-2/php/langcodes_name.php?iso_639_1=bs">
bs</a></span></td>
<td>bos</td>
<td>bos</td>
<td>bos</td>
<td></td>
</tr>
<tr>
<td style="background-color:#66FF00;"></td>
<td><a href="/wiki/Indo-European_languages" title=
"Indo-European languages">Indo-European</a></td>
<td><a href="/wiki/Breton_language" title=
"Breton language">Breton</a></td>
<td lang="br">brezhoneg</td>
<td><span class="plainlinks"><a rel="nofollow" class=
"external text" href=
"https://www.loc.gov/standards/iso639-2/php/langcodes_name.php?iso_639_1=br">
br</a></span></td>
<td>bre</td>
<td>bre</td>
<td>bre</td>
<td></td>
</tr>
<tr>
<td style="background-color:#66FF00;"></td>
<td><a href="/wiki/Indo-European_languages" title=
"Indo-European languages">Indo-European</a></td>
<td><a href="/wiki/Bulgarian_language" title=
"Bulgarian language">Bulgarian</a></td>
<td lang="bg">
българÑки
език</td>
<td><span class="plainlinks"><a rel="nofollow" class=
"external text" href=
"https://www.loc.gov/standards/iso639-2/php/langcodes_name.php?iso_639_1=bg">
bg</a></span></td>
<td>bul</td>
<td>bul</td>
<td>bul</td>
<td></td>
</tr>
<tr>
<td style="background-color:#FF2000;"></td>
<td><a href="/wiki/Sino-Tibetan_languages" title=
"Sino-Tibetan languages">Sino-Tibetan</a></td>
<td><a href="/wiki/Burmese_language" title=
"Burmese language">Burmese</a></td>
<td lang="my">
ဗမာစာ</td>
<td><span class="plainlinks"><a rel="nofollow" class=
"external text" href=
"https://www.loc.gov/standards/iso639-2/php/langcodes_name.php?iso_639_1=my">
my</a></span></td>
<td>mya</td>
<td><b>bur</b></td>
<td>mya</td>
<td></td>
</tr>
<tr>
<td style="background-color:#66FF00;"></td>
<td><a href="/wiki/Indo-European_languages" title=
"Indo-European languages">Indo-European</a></td>
<td><a href="/wiki/Catalan_language" title=
"Catalan language">Catalan</a>, Valencian</td>
<td lang="ca">català , valencià </td>
<td><span class="plainlinks"><a rel="nofollow" class=
"external text" href=
"https://www.loc.gov/standards/iso639-2/php/langcodes_name.php?iso_639_1=ca">
ca</a></span></td>
<td>cat</td>
<td>cat</td>
<td>cat</td>
<td></td>
</tr>
<tr>
<td style="background-color:#FFC0CB;"></td>
<td><a href="/wiki/Austronesian_languages" title=
"Austronesian languages">Austronesian</a></td>
<td><a href="/wiki/Chamorro_language" title=
"Chamorro language">Chamorro</a></td>
<td lang="ch">Chamoru</td>
<td><span class="plainlinks"><a rel="nofollow" class=
"external text" href=
"https://www.loc.gov/standards/iso639-2/php/langcodes_name.php?iso_639_1=ch">
ch</a></span></td>
<td>cha</td>
<td>cha</td>
<td>cha</td>
<td></td>
</tr>
<tr>
<td style="background-color:#ACE1AF;"></td>
<td><a href="/wiki/Northeast_Caucasian_languages" title=
"Northeast Caucasian languages">Northeast Caucasian</a></td>
<td><a href="/wiki/Chechen_language" title=
"Chechen language">Chechen</a></td>
<td lang="ce">
нохчийн
мотт</td>
<td><span class="plainlinks"><a rel="nofollow" class=
"external text" href=
"https://www.loc.gov/standards/iso639-2/php/langcodes_name.php?iso_639_1=ce">
ce</a></span></td>
<td>che</td>
<td>che</td>
<td>che</td>
<td></td>
</tr>
<tr>
<td style="background-color:#FFA500;"></td>
<td><a href="/wiki/Niger%E2%80%93Congo_languages" title=
"Niger–Congo languages">Niger–Congo</a></td>
<td><a href="/wiki/Chichewa_language" class="mw-redirect" title=
"Chichewa language">Chichewa</a>, Chewa, Nyanja</td>
<td lang="ny">chiCheŵa, chinyanja</td>
<td><span class="plainlinks"><a rel="nofollow" class=
"external text" href=
"https://www.loc.gov/standards/iso639-2/php/langcodes_name.php?iso_639_1=ny">
ny</a></span></td>
<td>nya</td>
<td>nya</td>
<td>nya</td>
<td></td>
</tr>
<tr>
<td style="background-color:#FF2000;"></td>
<td><a href="/wiki/Sino-Tibetan_languages" title=
"Sino-Tibetan languages">Sino-Tibetan</a></td>
<td><a href="/wiki/Chinese_language" title=
"Chinese language">Chinese</a></td>
<td><span lang="zh-Hani" title=
"Chinese language text">中文</span>
(ZhÅngwén), <span lang="zh-Hans" title=
"Chinese language text">汉语</span>,
<span lang="zh-Hant" title=
"Chinese language text">漢語</span></td>
<td><span class="plainlinks"><a rel="nofollow" class=
"external text" href=
"https://www.loc.gov/standards/iso639-2/php/langcodes_name.php?iso_639_1=zh">
zh</a></span></td>
<td>zho</td>
<td><b>chi</b></td>
<td><span class="nowrap">zho + <a href=
"/wiki/ISO_639_macrolanguage#zho" title=
"ISO 639 macrolanguage">14</a></span></td>
<td><a href="/wiki/Macrolanguage" class="mw-redirect" title=
"Macrolanguage">macrolanguage</a></td>
</tr>
<tr>
<td style="background-color:#ADFF2F;"></td>
<td><a href="/wiki/Turkic_languages" title=
"Turkic languages">Turkic</a></td>
<td><a href="/wiki/Chuvash_language" title=
"Chuvash language">Chuvash</a></td>
<td lang="cv">
чӑваш
чӗлхи</td>
<td><span class="plainlinks"><a rel="nofollow" class=
"external text" href=
"https://www.loc.gov/standards/iso639-2/php/langcodes_name.php?iso_639_1=cv">
cv</a></span></td>
<td>chv</td>
<td>chv</td>
<td>chv</td>
<td></td>
</tr>
<tr>
<td style="background-color:#66FF00;"></td>
<td><a href="/wiki/Indo-European_languages" title=
"Indo-European languages">Indo-European</a></td>
<td><a href="/wiki/Cornish_language" title=
"Cornish language">Cornish</a></td>
<td lang="kw">Kernewek</td>
<td><span class="plainlinks"><a rel="nofollow" class=
"external text" href=
"https://www.loc.gov/standards/iso639-2/php/langcodes_name.php?iso_639_1=kw">
kw</a></span></td>
<td>cor</td>
<td>cor</td>
<td>cor</td>
<td></td>
</tr>
<tr>
<td style="background-color:#66FF00;"></td>
<td><a href="/wiki/Indo-European_languages" title=
"Indo-European languages">Indo-European</a></td>
<td><a href="/wiki/Corsican_language" title=
"Corsican language">Corsican</a></td>
<td lang="co">corsu, lingua corsa</td>
<td><span class="plainlinks"><a rel="nofollow" class=
"external text" href=
"https://www.loc.gov/standards/iso639-2/php/langcodes_name.php?iso_639_1=co">
co</a></span></td>
<td>cos</td>
<td>cos</td>
<td>cos</td>
<td></td>
</tr>
<tr>
<td style="background-color:#ADD8E6;"></td>
<td><a href="/wiki/Algonquian_languages" title=
"Algonquian languages">Algonquian</a></td>
<td><a href="/wiki/Cree_language" title=
"Cree language">Cree</a></td>
<td lang="cr">
á“€á¦áƒá”­ááá£</td>
<td><span class="plainlinks"><a rel="nofollow" class=
"external text" href=
"https://www.loc.gov/standards/iso639-2/php/langcodes_name.php?iso_639_1=cr">
cr</a></span></td>
<td>cre</td>
<td>cre</td>
<td>cre + <a href="/wiki/ISO_639_macrolanguage#cre" title=
"ISO 639 macrolanguage">6</a></td>
<td><a href="/wiki/Macrolanguage" class="mw-redirect" title=
"Macrolanguage">macrolanguage</a></td>
</tr>
<tr>
<td style="background-color:#66FF00;"></td>
<td><a href="/wiki/Indo-European_languages" title=
"Indo-European languages">Indo-European</a></td>
<td><a href="/wiki/Croatian_language" title=
"Croatian language">Croatian</a></td>
<td lang="hr">hrvatski jezik</td>
<td><span class="plainlinks"><a rel="nofollow" class=
"external text" href=
"https://www.loc.gov/standards/iso639-2/php/langcodes_name.php?iso_639_1=hr">
hr</a></span></td>
<td>hrv</td>
<td>hrv</td>
<td>hrv</td>
<td></td>
</tr>
<tr>
<td style="background-color:#66FF00;"></td>
<td><a href="/wiki/Indo-European_languages" title=
"Indo-European languages">Indo-European</a></td>
<td><a href="/wiki/Czech_language" title=
"Czech language">Czech</a></td>
<td lang="cs">ÄeÅ¡tina, Äeský
jazyk</td>
<td><span class="plainlinks"><a rel="nofollow" class=
"external text" href=
"https://www.loc.gov/standards/iso639-2/php/langcodes_name.php?iso_639_1=cs">
cs</a></span></td>
<td>ces</td>
<td><b>cze</b></td>
<td>ces</td>
<td></td>
</tr>
<tr>
<td style="background-color:#66FF00;"></td>
<td><a href="/wiki/Indo-European_languages" title=
"Indo-European languages">Indo-European</a></td>
<td><a href="/wiki/Danish_language" title=
"Danish language">Danish</a></td>
<td lang="da">dansk</td>
<td><span class="plainlinks"><a rel="nofollow" class=
"external text" href=
"https://www.loc.gov/standards/iso639-2/php/langcodes_name.php?iso_639_1=da">
da</a></span></td>
<td>dan</td>
<td>dan</td>
<td>dan</td>
<td></td>
</tr>
<tr>
<td style="background-color:#66FF00;"></td>
<td><a href="/wiki/Indo-European_languages" title=
"Indo-European languages">Indo-European</a></td>
<td><a href="/wiki/Dhivehi_language" class="mw-redirect" title=
"Dhivehi language">Divehi</a>, Dhivehi, Maldivian</td>
<td lang="dv" dir="rtl">
<div style="float: left;">
Þ‹Þ¨ÞˆÞ¬Þ€Þ¨</div>
</td>
<td><span class="plainlinks"><a rel="nofollow" class=
"external text" href=
"https://www.loc.gov/standards/iso639-2/php/langcodes_name.php?iso_639_1=dv">
dv</a></span></td>
<td>div</td>
<td>div</td>
<td>div</td>
<td></td>
</tr>
<tr>
<td style="background-color:#66FF00;"></td>
<td><a href="/wiki/Indo-European_languages" title=
"Indo-European languages">Indo-European</a></td>
<td><a href="/wiki/Dutch_language" title=
"Dutch language">Dutch</a>, Flemish</td>
<td lang="nl">Nederlands, Vlaams</td>
<td><span class="plainlinks"><a rel="nofollow" class=
"external text" href=
"https://www.loc.gov/standards/iso639-2/php/langcodes_name.php?iso_639_1=nl">
nl</a></span></td>
<td>nld</td>
<td><b>dut</b></td>
<td>nld</td>
<td></td>
</tr>
<tr>
<td style="background-color:#FF2000;"></td>
<td><a href="/wiki/Sino-Tibetan_languages" title=
"Sino-Tibetan languages">Sino-Tibetan</a></td>
<td><a href="/wiki/Dzongkha_language" class="mw-redirect" title=
"Dzongkha language">Dzongkha</a></td>
<td lang="dz">
རྫོང་à½</td>
<td><span class="plainlinks"><a rel="nofollow" class=
"external text" href=
"https://www.loc.gov/standards/iso639-2/php/langcodes_name.php?iso_639_1=dz">
dz</a></span></td>
<td>dzo</td>
<td>dzo</td>
<td>dzo</td>
<td></td>
</tr>
<tr>
<td style="background-color:#66FF00;"></td>
<td><a href="/wiki/Indo-European_languages" title=
"Indo-European languages">Indo-European</a></td>
<td><a href="/wiki/English_language" title=
"English language">English</a></td>
<td lang="en">English</td>
<td><span class="plainlinks"><a rel="nofollow" class=
"external text" href=
"https://www.loc.gov/standards/iso639-2/php/langcodes_name.php?iso_639_1=en">
en</a></span></td>
<td>eng</td>
<td>eng</td>
<td>eng</td>
<td></td>
</tr>
<tr>
<td style="background-color:#000000;"></td>
<td><a href="/wiki/Constructed_languages" class="mw-redirect"
title="Constructed languages">Constructed</a></td>
<td><a href="/wiki/Esperanto" title="Esperanto">Esperanto</a></td>
<td lang="eo">Esperanto</td>
<td><span class="plainlinks"><a rel="nofollow" class=
"external text" href=
"https://www.loc.gov/standards/iso639-2/php/langcodes_name.php?iso_639_1=eo">
eo</a></span></td>
<td>epo</td>
<td>epo</td>
<td>epo</td>
<td><a href="/wiki/Constructed_languages" class="mw-redirect"
title="Constructed languages">constructed</a>, initiated from L.L.
Zamenhof, 1887</td>
</tr>
<tr>
<td style="background-color:#32CD32;"></td>
<td><a href="/wiki/Uralic_languages" title=
"Uralic languages">Uralic</a></td>
<td><a href="/wiki/Estonian_language" title=
"Estonian language">Estonian</a></td>
<td lang="et">eesti, eesti keel</td>
<td><span class="plainlinks"><a rel="nofollow" class=
"external text" href=
"https://www.loc.gov/standards/iso639-2/php/langcodes_name.php?iso_639_1=et">
et</a></span></td>
<td>est</td>
<td>est</td>
<td>est + <a href="/wiki/ISO_639_macrolanguage#est" title=
"ISO 639 macrolanguage">2</a></td>
<td><a href="/wiki/Macrolanguage" class="mw-redirect" title=
"Macrolanguage">macrolanguage</a></td>
</tr>
<tr>
<td style="background-color:#FFA500;"></td>
<td><a href="/wiki/Niger%E2%80%93Congo_languages" title=
"Niger–Congo languages">Niger–Congo</a></td>
<td><a href="/wiki/Ewe_language" title="Ewe language">Ewe</a></td>
<td lang="ee">Eʋegbe</td>
<td><span class="plainlinks"><a rel="nofollow" class=
"external text" href=
"https://www.loc.gov/standards/iso639-2/php/langcodes_name.php?iso_639_1=ee">
ee</a></span></td>
<td>ewe</td>
<td>ewe</td>
<td>ewe</td>
<td></td>
</tr>
<tr>
<td style="background-color:#66FF00;"></td>
<td><a href="/wiki/Indo-European_languages" title=
"Indo-European languages">Indo-European</a></td>
<td><a href="/wiki/Faroese_language" title=
"Faroese language">Faroese</a></td>
<td lang="fo">føroyskt</td>
<td><span class="plainlinks"><a rel="nofollow" class=
"external text" href=
"https://www.loc.gov/standards/iso639-2/php/langcodes_name.php?iso_639_1=fo">
fo</a></span></td>
<td>fao</td>
<td>fao</td>
<td>fao</td>
<td></td>
</tr>
<tr>
<td style="background-color:#FFC0CB;"></td>
<td><a href="/wiki/Austronesian_languages" title=
"Austronesian languages">Austronesian</a></td>
<td><a href="/wiki/Fijian_language" title=
"Fijian language">Fijian</a></td>
<td lang="fj">vosa Vakaviti</td>
<td><span class="plainlinks"><a rel="nofollow" class=
"external text" href=
"https://www.loc.gov/standards/iso639-2/php/langcodes_name.php?iso_639_1=fj">
fj</a></span></td>
<td>fij</td>
<td>fij</td>
<td>fij</td>
<td></td>
</tr>
<tr>
<td style="background-color:#32CD32;"></td>
<td><a href="/wiki/Uralic_languages" title=
"Uralic languages">Uralic</a></td>
<td><a href="/wiki/Finnish_language" title=
"Finnish language">Finnish</a></td>
<td lang="fi">suomi, suomen kieli</td>
<td><span class="plainlinks"><a rel="nofollow" class=
"external text" href=