Module:languages/data2

E Victionario

Purpose[+/-]

This module contains definitions and metadata for two-letter language codes. See Wiktionary:Languages for more information.

This module must not be used directly in other modules or templates. The data should be accessed through Module:languages.

Required values[+/-]

Every entry in the table must contain the following properties:

canonicalName
The "canonical" name of the language. This is the name that is used in Wiktionary entries and category names.

Optional values[+/-]

The following properties are used for text substitution; they replace or remove certain (sets of) characters or sets of characters. They all work similar, and are all optional. The search and replacement patterns are those used by the standard mw.ustring.gsub function. They resemble regular expressions; see search/replace patterns for more information.

If present, each of these properties must be a table that contains two tables, one named from and one named to. These two tables are organised pairwise: each element in from is a pattern to identify which characters in the term to replace, while the corresponding element in to defines what to replace them with. If the replacement is not present or if it is false or nil, it defaults to an empty replacement, meaning that the matching characters are removed altogether. This means that the from list can be longer than the to list, and an empty replacement will be assumed for any elements in from that have no counterpart in to.

At the top of the module, there is a list of combining characters with names. These are provided for convenience and readability, as combining characters generally do not display property inside the module code (although they do not affect the actual operation of the module).

entry_name
Defines replacements to create the entry name from the displayed form of a term. This can be used to remove certain diacritical marks according to the customs or standard practice of the language. For example, it is used to remove accent marks from Russian words, or macrons from Latin or Old English words, as these are not used in the normal written form of these languages. This is used by remove_diacritics in Module:links.
sort_key
Defines replacements to create a category sort key from the page name. The purpose is to remove any characters that are ignored in sorting, and to replace similar characters with identical ones if the sorting rules for that language do not distinguish them. For example, in German, the characters "ä" and "a" are considered equivalent for sorting, and are both treated as "a". The page name is converted to lowercase before applying the replacements, so you should not add uppercase letters to the "from" lists. This is used by format_categories in Module:utilities.

These are other optional values:

otherNames
A table of all the names that this language is known by, other than the canonical name. The list should include not only synonyms for the language, but also names that refer to language varieties that are subsumed under the same grouping. For example, while "Flemish" is not synonymous with "Dutch", Flemish is considered a part of Dutch, so the name is listed there.
type
The type of language (which affects how it is handled on Wiktionary). Possible values are:
  • regular - This value is the default, so it doesn't need to be specified. It indicates that the is attested according to WT:CFI and therefore permitted in the main namespace. There may also be reconstructed terms for the language, which are placed in the Appendix namespace and must be prefixed with * to indicate a reconstruction.
  • reconstructed - This language is not attested according to CFI, and therefore is allowed only in the Appendix namespace. All terms in this language are reconstructed, and must be prefixed with *.
  • appendix-constructed - This language is attested but does not meet the additional requirements set out for constructed languages (WT:CFI#Constructed languages). Its entries must therefore be in the Appendix namespace, but they are not reconstructed and therefore should not have * prefixed in links.
scripts
A list of script codes, see Wiktionary:Scripts. These represent all the scripts (writing systems) that this language employs, which are used on the main category of the language.
Most templates and modules will use a default script when no script is specified for them, but the script codes are interpreted in two different ways:
  • Templates and modules that use detect_script in Module:utilities will try to detect the script (based on the characters in the text), using the list of scripts as a list of possible scripts to try to detect. If the script cannot be detected, the first listed script is used by default.
  • All other templates and modules will generally use the first script listed as the default script.
family
The code for the family that the language belongs to. See Wiktionary:Families.
translit_module
The name of a module that is used to generate transliterations of terms, without the Module: prefix. This module must export a function named tr that is defined as follows:
tr(text, lang, sc)
The three parameters are the text to be transliterated, the language code, and the script code. The function can ignore the language and script codes, but they are provided for cases when a language has more than one script, or when a single function is used to transliterate multiple languages sharing the same script.
ancestors
A table listing the language codes of the direct ancestors of this language. For example, for English one would list enm (Middle English) but not ang (Old English). For most languages, only one value should be specified in the list, but multiple ancestors can be listed for pidgins, creoles and mixed languages.
wikimedia_codes
A table listing the Wikimedia language codes that this language maps to. This is used to translate Wiktionary codes to Wikimedia codes, which are usually the same but there are a few languages where it is different. The language codes must be valid Wikimedia codes (as determined by the wiki software), and if they are not defined in one of the language data modules, they must be defined in Module:wikimedia languages/data.
wikipedia_article
The name of the Wikipedia article for the language. Should be supplied if different from the name of the language's category on Wiktionary.

-- Module:languages/data2
-- imported from en.wiktionary
-- 2023-04-09 -- V28 -- +ia, last modified by Usor:YaganZ
-- 2022-12-12 -- V27 -- +mh, ml, last modified by Usor:YaganZ
-- 2022-08-20 -- V26 -- fa-translit module experimental, last modified by Usor:YaganZ
-- 2022-08-14 -- V25 -- sh-translit module, last modified by Usor:YaganZ
-- 2021-12-27 -- V24 -- bn, ma, sc experimental, last modified by Usor:YaganZ
-- 2021-03-14 -- V23 -- +kv = kpv = Komiense, last modified by Usor:YaganZ
-- 2020-12-06 -- V22 -- +cu, last modified by Usor:YaganZ
-- 2020-10-14 -- V21 -- +oj, last modified by Usor:YaganZ
-- 2020-07-16 -- V20 -- +genplf, last modified by Usor:YaganZ
-- canonicalNames are translated into Latin adverbial, ablative or neuter forms (if available in Categoria:Formulae linguarum),
-- missing entries added.
-- otherNames 1-6 are used for mostly used inflected forms, 7=own name, 8=non-inflected form, 9-n are rarely used inflected forms:
-- 1=nomsgf, 2=nomplf, 3=nomplm, 4=nomsgn, 5=nompln, 6=gensgf, 7=ipsa, 8=nomsgm, 9=ablsgf, 10=genplf

local u = mw.ustring.char

-- UTF-8 encoded strings for some commonly-used diacritics
local GRAVE     = u(0x0300)
local ACUTE     = u(0x0301)
local CIRC      = u(0x0302)
local TILDE     = u(0x0303)
local MACRON    = u(0x0304)
local BREVE     = u(0x0306)
local DOTABOVE  = u(0x0307)
local DIAER     = u(0x0308)
local CARON     = u(0x030C)
local DGRAVE    = u(0x030F)
local INVBREVE  = u(0x0311)
local DOTBELOW  = u(0x0323)
local RINGBELOW = u(0x0325)
local CEDILLA   = u(0x0327)

-- Puncuation to be used for standardChars field
-- local PUNCTUATION = ' \!\#\$\%\&\*\+\,\-\.\/\:\;\<\=\>\?\@\^\_\`\|\~\'\(\)'

-- UTF-8 encoded strings for some commonly-used diacritics.
local c = {
	grave			= u(0x0300),
	acute			= u(0x0301),
	circ			= u(0x0302),
	tilde			= u(0x0303),
	macron			= u(0x0304),
	overline		= u(0x0305),
	breve			= u(0x0306),
	dotabove		= u(0x0307),
	diaer			= u(0x0308),
	ringabove		= u(0x030A),
	dacute			= u(0x030B),
	caron			= u(0x030C),
	lineabove		= u(0x030D),
	dgrave			= u(0x030F),
	invbreve		= u(0x0311),
	commaabove		= u(0x0313),
	revcommaabove	= u(0x0314),
	dotbelow		= u(0x0323),
	diaerbelow		= u(0x0324),
	ringbelow		= u(0x0325),
	cedilla			= u(0x0327),
	ogonek			= u(0x0328),
	brevebelow		= u(0x032E),
	macronbelow		= u(0x0331),
	perispomeni		= u(0x0342),
	ypogegrammeni	= u(0x0345),
	CGJ				= u(0x034F), -- combining grapheme joiner
	dbrevebelow		= u(0x035C),
	dinvbreve		= u(0x0361),
	kamora          = u(0x0484),
	dasiapneumata   = u(0x0485),
	psilipneumata   = u(0x0486),
	kashida			= u(0x0640),
	fathatan		= u(0x064B),
	dammatan		= u(0x064C),
	kasratan		= u(0x064D),
	fatha			= u(0x064E),
	damma			= u(0x064F),
	kasra			= u(0x0650),
	shadda			= u(0x0651),
	sukun			= u(0x0652),
	hamzaabove		= u(0x0654),
	nunghunna		= u(0x0658),
	smallv			= u(0x065A),
	superalef		= u(0x0670),
	psili			= u(0x1FBD),
	coronis			= u(0x1FBF),
	ZWNJ			= u(0x200C), -- zero width non-joiner
	ZWJ				= u(0x200D), -- zero width joiner
	RSQuo			= u(0x2019), -- right single quote
	VS01			= u(0xFE00), -- variation selector 1
	-- Punctuation to be used for standardChars field.
	punc			= " !#%%&'%(%)%*%+,%-%./:;<=>%?@%[\\%]^_`{|}~∅"
}

local m = {}

m["aa"] = {
	canonicalName = "Afarice",
	otherNames = {"Afarica", "Afaricae", "Afarici", "Afaricum", "Afarica", "Afaricae", "Qafaraf",  
		"Afaricus", "Afarica", "Afaricarum", "Qafar"},
	scripts = {"Latn"},
	family = "cus",
}

m["ab"] = {
	canonicalName = "Abasce",
	otherNames = {"Abasca", "Abascae", "Abasci", "Abascum", "Abasca", "Abascae", "аҧсшәа", 
		"Abascus", "Abasca", "Abascarum", "Abkhazian", "Abxazo"},
	scripts = {"Cyrl", "Geor", "Latn"},
	family = "cau-abz",
	translit_module = "ab-translit",
	entry_name = {
		from = {GRAVE, ACUTE},
		to   = {}} ,
}

m["ae"] = {
	canonicalName = "Avestane",
	otherNames = {"Avestana", "Avestanae", "Avestani", "Avestanum", "Avestana", "Avestanae", "zend", 
		"Avestanus", "Avestana", "Avestanarum", "Old Bactrian"},
	scripts = {"Avst", "Gujr"},
	family = "ira-eas",
	translit_module = "Avst-translit",
}

m["af"] = {
	canonicalName = "Africanice",
	otherNames = {"Africanica", "Africanicae", "Africanici", "Africanicum", "Africanica", "Africanicae", "Afrikaans", 
		"Africanicus", "Africanica", "Africanicarum"},
	scripts = {"Latn", "Arab"},
	family = "gmw",
	ancestors = {"nl"},
	sort_key = {
		from = {"[äáâà]", "[ëéêè]", "[ïíîì]", "[öóôò]", "[üúûù]", "[ÿýŷỳ]", "^-", "'"},
		to   = {"a"	 , "e"	, "i"	, "o"	, "u"  , "y" }} ,
}

m["ak"] = {
	canonicalName = "Akan",
	otherNames = {"Twi-Fante", "Twi", "Fante", "Fanti", "Asante", "Akuapem"},
	scripts = {"Latn"},
	family = "alv-kwa",
}

m["am"] = {
	canonicalName = "Aethiopice",
	otherNames = {"Aethiopica", "Aethiopicae", "Aethiopici", "Aethiopicum", "Aethiopica", "Aethiopicae", "አማርኛ", 
		"Aethiopicus", "Aethiopica", "Aethiopicarum", "Amharica"},
	scripts = {"Ethi"},
	family = "sem-eth",
	translit_module = "Ethi-translit",
}

m["an"] = {
	canonicalName = "Aragonice",
	otherNames = {"Aragonica", "Aragonicae", "Aragonici", "Aragonicum", "Aragonica", "Aragonicae", "aragonés", 
		"Aragonicus", "Aragonica", "Aragonicarum", "Aragonensis"},
	scripts = {"Latn"},
	family = "roa",
	ancestors = {"roa-oan"},
}

m["ar"] = {
	canonicalName = "Arabice",
	otherNames = {"Arabica", "Arabicae", "Arabici", "Arabicum", "Arabica", "Arabicae", "العربية", 
		"Arabicus", "Arabica", "Arabicarum", "Modern Standard Arabic", "Standard Arabic", "Literary Arabic", "Classical Arabic"},
	scripts = {"Arab"},
	family = "sem-arb",
	entry_name = {
		from = {u(0x0671), u(0x064B), u(0x064C), u(0x064D), u(0x064E), u(0x064F), u(0x0650), u(0x0651), u(0x0652), u(0x0670), u(0x0640)},
		to   = {u(0x0627)}},
	translit_module = "ar-translit",
}

m["as"] = {
	canonicalName = "Assamice",
	otherNames = {"Assamica", "Assamicae", "Assamici", "Assamicum", "Assamica", "Assamicae", "অসমীয়া", 
		"Assamicus", "Assamica", "Assamicarum", "Asamiya"},
	scripts = {"Beng"},
	family = "inc",
	ancestors = {"pka"},
}

m["av"] = {
	canonicalName = "Avar",
	otherNames = {"Avaric"},
	scripts = {"Cyrl"},
	family = "cau-nec",
	ancestors = {"oav"},
	translit_module = "av-translit",
}

m["ay"] = {
	canonicalName = "Aymare",
	otherNames = {"Southern Aymara", "Central Aymara"},
	scripts = {"Latn"},
	family = "sai-aym",
}

m["az"] = {
	canonicalName = "Atropatenice",
	otherNames = {"Atropatenica", "Atropatenicae", "Atropatenici", "Atropatenicum", "Atropatenica", "Atropatenicae", "Azərbaycan dili",
		"Atropatenicus", "Atropatenica", "Atropatenicarum",  "Azerbaijani", "Azari", "Azeri Turkic", "Azerbaijani Turkic", "North Azerbaijani", "South Azerbaijani"},
	scripts = {"Latn", "Cyrl", "fa-Arab"},
	family = "trk-ogz",
}

m["ba"] = {
	canonicalName = "Baschkirice",
	otherNames = {"Baschkirica", "Baschkiricae", "Baschkirici", "Baschkiricum", "Baschkirica", "Baschkiricae", "башҡортса", 
		"Baschkiricus", "Baschkirica", "Baschkiricarum", "Bashkir"},
	scripts = {"Cyrl"},
	family = "trk-kip",
	translit_module = "ba-translit",
}

m["be"] = {
	canonicalName = "Albaruthenice",
	otherNames = {"Albaruthenica", "Albaruthenicae", "Albaruthenici", "Albaruthenicum", "Albaruthenica", "Albaruthenicae", "беларуская мова", 
		"Albaruthenicus", "Albaruthenica", "Albaruthenicarum", "Belorussian", "Belarusan", "Bielorussian", "Byelorussian", "Belarussian", "White Russian"},
	scripts = {"Cyrl"},
	family = "zle",
	translit_module = "be-translit",
	sort_key = {
		from = {"Ё", "ё"},
		to   = {"Е" , "е"}},
	entry_name = {
		from = {"Ѐ", "ѐ", GRAVE, ACUTE},
		to   = {"Е", "е"}},
}

m["bg"] = {
	canonicalName = "Bulgarice",
	otherNames = {"Bulgarica", "Bulgaricae", "Bulgarici", "Bulgaricum", "Bulgarica", "Bulgaricae", "български език", 
		"Bulgaricus", "Bulgarica", "Bulgaricarum" },
	scripts = {"Cyrl"},
	family = "zls",
	translit_module = "bg-translit",
	entry_name = {
		from = {"Ѐ", "ѐ", "Ѝ", "ѝ", GRAVE, ACUTE},
		to   = {"Е", "е", "И", "и"}},
}

m["bh"] = {
	canonicalName = "Bihari",
	scripts = {"Deva"},
	family = "inc",
	ancestors = {"pka"},
}

m["bi"] = {
	canonicalName = "Bislama",
	scripts = {"Latn"},
	family = "crp",
	ancestors = {"en"},
}

m["bm"] = {
	canonicalName = "Bambara",
	otherNames = {"Bamanankan"},
	scripts = {"Latn"},
	family = "dmn",
}

m["bn"] = {
	"Bengale", "Q9610", "inc-eas",
	canonicalName = "Bengale",
	otherNames = {"Bengala", "Bengalae", "Bengali", "Bengalum", "Bengala", "Bengalae", "বাংলা", 
		"Bengalus", "Bengala", "Bengalarum", "Bangla", "Bengali"},
	scripts = {"Beng", "Newa"},
	ancestors = {"inc-mbn"},
	translit_module = "bn-translit",
}

m["bo"] = {
	canonicalName = "Tibetane",
	otherNames = {"Tibetana", "Tibetanae", "Tibetani", "Tibetanum", "Tibetana", "Tibetanae", "བོད་སྐད།",
		"Tibetanus", "Tibetana", "Tibetanarum"}, 
	scripts = {"Tibt"},
	family = "tbq",
	ancestors = {"xct"},
	translit_module = "bo-translit",
}

m["br"] = {
	canonicalName = "Britonice",
	otherNames = {"Britonica", "Britonicae", "Britonici", "Britonicum", "Britonica", "Britonicae", "brezhoneg", 
		"Britonicus", "Britonica", "Britonicarum"},
	scripts = {"Latn"},
	family = "cel-bry",
	ancestors = {"xbm"},
}

m["bs"] = {
	canonicalName = "Bosnice",
	otherNames = {"Bosnica", "Bosnicae", "Bosnici", "Bosnicum", "Bosnica", "Bosnicae", "Bosnian", "bosanski jezik",
		"Bosnicus", "Bosnica", "Bosnicarum"},
	scripts = {"Latn"},
	family = "zlw",
}

m["ca"] = {
	canonicalName = "Catalane",
	otherNames = {"Catalana", "Catalanae", "Catalani", "Catalanum", "Catalana", "Catalanae", "català", 
			"Catalanus", "Catalana", "Catalanarum", "Valencian"},
	scripts = {"Latn"},
	family = "roa",
	ancestors = {"roa-oca"},
	sort_key = {
		from = {"à", "[èé]", "[íï]", "[òó]", "[úü]", "ç", "l·l"},
		to   = {"a", "e"   , "i"   , "o"   , "u"   , "c", "ll" }} ,
}

m["ce"] = {
	canonicalName = "Chechen",
	scripts = {"Cyrl"},
	family = "cau-nkh",
	translit_module = "ce-translit",
	entry_name = {
		from = {MACRON},
		to   = {}},
}

m["ch"] = {
	canonicalName = "Chamorre",
	otherNames = {"Chamoru"},
	scripts = {"Latn"},
	family = "poz-sus",
}

m["co"] = {
	canonicalName = "Corse",
	otherNames = {"Corsa", "Corsae", "Corsi", "Corsum", "Corsa", "Corsae", "corsu", 
		"Corsus", "Corsa", "Corsarum", "Corsican"},
	scripts = {"Latn"},
	family = "roa",
}

m["cr"] = {
	canonicalName = "Cree",
	scripts = {"Cans", "Latn"},
	family = "alg",
	translit_module = "cr-translit",
}

m["cs"] = {
	canonicalName = "Bohemice",
	otherNames = {"Bohemica", "Bohemicae", "Bohemici", "Bohemicum", "Bohemica", "Bohemicae", "čeština", 
		"Bohemicus", "Bohemica", "Bohemicarum"},
	scripts = {"Latn"},
	family = "zlw",
	ancestors = {"zlw-ocs"},
	sort_key = {
		from = {"á", "é", "í", "ó", "[úů]", "ý"},
		to   = {"a", "e", "i", "o", "u"   , "y"}} ,
}

m["cu"] = {
	"Slavica Antiqua", "Q35499", "zls",
	otherNames = {"Slavica Antiqua", "Slavicae Antiquae", "Slavici Antiqui", "Slavicum Antiquum", "Slavica Antiqua", "Slavicae Antiquae", "словѣньскъ ѩзыкъ",
		"Slavicus Antiquus", "Slavica Antiqua", "Slavicarum Antiquarum", "Old Church Slavic", "Old Church Slavonic"},
	scripts = {"Cyrs", "Glag"},
	translit_module = "Cyrs-Glag-translit",
	entry_name = {
		from = {u(0x0484)}, -- kamora
		to   = {}},
	sort_key = {
		from = {"оу", "є"},
		to   = {"у" , "е"}} ,
}

m["cv"] = {
	canonicalName = "Chuvash",
	scripts = {"Cyrl"},
	family = "trk-ogr",
	translit_module = "cv-translit",
}

m["cy"] = {
	canonicalName = "Cambrice",
	otherNames = {"Cambrica", "Cambricae", "Cambrici", "Cambricum", "Cambrica", "Cambricae", "Cymraeg", 
		"Cambricus", "Cambrica", "Cambricarum"},
	scripts = {"Latn"},
	family = "cel-bry",
	ancestors = {"wlm"},
	sort_key = {
		from = {"[âáàä]", "[êéèë]", "[îíìï]", "[ôóòö]", "[ûúùü]", "[ŵẃẁẅ]", "[ŷýỳÿ]", "'"},
		to   = {"a"	 , "e"	 , "i"	 , "o"	 , "u"	 , "w"	 , "y"	 }} ,
}

m["da"] = {
	canonicalName = "Danice",
	otherNames = {"Danica", "Danicae", "Danici", "Danicum", "Danica", "Danicae", "dansk", 
		"Danicus", "Danica", "Danicarum"},
	scripts = {"Latn"},
	family = "gmq",
	ancestors = {"gmq-oda"},
}

m["de"] = {
	"Germanice", "Q188", "gmw",
	otherNames = {"Germanica", "Germanicae", "Germanici", "Germanicum", "Germanica", "Germanicae", "Deutsch", 
		"Germanicus", "Germanica", "Germanicarum", "High German", "New High German", "Deutsch"}, -- the last name is indeed also used in English
	scripts = {"Latn", "Latf"},
	ancestors = {"gmh"},
	sort_key = {
		from = {"[äàáâå]", "[ëèéê]", "[ïìíî]", "[öòóô]", "[üùúû]", "ß" },
		to   = {"a"	  , "e"	 , "i"	 , "o"	 , "u"	 , "ss"}} ,
}

m["dv"] = {
	canonicalName = "Dhivehi",
	otherNames = {"Divehi", "Mahal", "Mahl", "Maldivian"},
	scripts = {"Thaa"},
	family = "inc",
	ancestors = {"pmh"},
	translit_module = "dv-translit",
}

m["dz"] = {
	canonicalName = "Dzongkha",
	scripts = {"Tibt"},
	family = "tbq",
	ancestors = {"xct"},
	translit_module = "bo-translit",
}

m["ee"] = {
	canonicalName = "Ewe",
	scripts = {"Latn"},
	family = "alv",
}

m["el"] = {
	canonicalName = "Neograece",
	otherNames = {"Neograeca", "Neograecae", "Neograeci", "Neograecum", "Neograeca", "Neograecae", "Νέα Ελληνικά", 
		"Neograecus", "Neograeca", "Neograecarum", "Modern Greek", "Neo-Hellenic"},
	scripts = {"Grek"},
	family = "grk",
	ancestors = {"grc"},
	translit_module = "el-translit",
	sort_key = {  -- Keep this synchronized with grc, cpg, pnt
		from = {"[ᾳάᾴὰᾲᾶᾷἀᾀἄᾄἂᾂἆᾆἁᾁἅᾅἃᾃἇᾇ]", "[έὲἐἔἒἑἕἓ]", "[ῃήῄὴῂῆῇἠᾐἤᾔἢᾒἦᾖἡᾑἥᾕἣᾓἧᾗ]", "[ίὶῖἰἴἲἶἱἵἳἷϊΐῒῗ]", "[όὸὀὄὂὁὅὃ]", "[ύὺῦὐὔὒὖὑὕὓὗϋΰῢῧ]", "[ῳώῴὼῲῶῷὠᾠὤᾤὢᾢὦᾦὡᾡὥᾥὣᾣὧᾧ]", "ῥ", "ς"},
		to   = {"α"						, "ε"		 , "η"						, "ι"				, "ο"		 , "υ"				, "ω"						, "ρ", "σ"}} ,
}

m["en"] = {
	canonicalName = "Anglice",
	otherNames = {"Anglica", "Anglicae", "Anglici", "Anglicum", "Anglica", "Anglicae", "English", 
		"Anglicus", "Anglica", "Anglicarum", "Modern English", "New English", "Hawaiian Creole English", "Hawai'ian Creole English", "Hawaiian Creole", "Hawai'ian Creole", "Polari", "Yinglish"}, -- all but the first three are names and alt names of subsumed dialects which once had ISO codes
	scripts = {"Latn", "Shaw", "Dsrt"}, -- last two are rare but probably attested; entries in them might require community approval, but it's good for the script codes not to be orphans
	family = "gmw",
	ancestors = {"enm"},
	sort_key = {
		from = {"[äàáâåā]", "[ëèéêē]", "[ïìíîī]", "[öòóôō]", "[üùúûū]", "æ" , "œ" , "[çč]", "ñ", "'"},
		to   = {"a"       , "e"      , "i"      , "o"      , "u"      , "ae", "oe", "c"   , "n"}},
	wikimedia_codes = {"en", "simple"},
	standardChars = "A-Za-z0-9" .. c.punc .. u(0x2800) .. "-" .. u(0x28FF)
}

m["eo"] = {
	canonicalName = "Esperantice",
	otherNames = {"Esperantica", "Esperanticae", "Esperantici", "Esperanticum", "Esperantica", "Esperanticae", "Esperanto", 
		"Esperanticus", "Esperantica", "Esperanticarum"},
	scripts = {"Latn"},
	family = "art",
	sort_key = {
		from = {"[áà]", "[éè]", "[íì]", "[óò]", "[úù]", "[ĉ]", "[ĝ]", "[ĥ]", "[ĵ]", "[ŝ]", "[ŭ]"},
		to   = {"a"	   , "e"  , "i"  , "o"  , "u", "cĉ", "gĉ", "hĉ", "jĉ", "sĉ", "uĉ"}} ,
}

m["es"] = {
	canonicalName = "Hispanice",
	otherNames = {"Hispanica", "Hispanicae", "Hispanici", "Hispanicum", "Hispanica", "Hispanicae", "español", 
		"Hispanicus", "Hispanica", "Hispanicarum", "Castilian"},
	scripts = {"Latn"},
	family = "roa",
	ancestors = {"osp"},
	sort_key = {
		from = {"á", "é", "í", "ó", "[úü]", "ç", "ñ"},
		to   = {"a", "e", "i", "o", "u"   , "c", "n"}},
	standardChars = "A-VXYZa-vxyz0-9ÁáÉéÍíÓóÚúÑñ¿¡" .. c.punc,
}

m["et"] = {
	canonicalName = "Estonice",
	otherNames = {"Estonica", "Estonicae", "Estonici", "Estonicum", "Estonica", "Estonicae", "eesti keel", 
		"Estonicus", "Estonica", "Estonicarum"},
	scripts = {"Latn"},
	family = "fiu-fin",
}

m["eu"] = {
	canonicalName = "Vasconice",
	otherNames = {"Vasconica", "Vasconicae", "Vasconici", "Vasconicum", "Vasconica", "Vasconicae", "Euskara", 
		"Vasconicus", "Vasconica", "Vasconicarum"},
	scripts = {"Latn"},
	family = "euq",
}

m["fa"] = {
	canonicalName = "Persice",
	otherNames = {"Persica", "Persicae", "Persici", "Persicum", "Persica", "Persicae", "فارسی", 
		"Persicus", "Persica", "Persicarum", "Farsi", "New Persian", "Modern Persian", "Western Persian", "Iranian Persian", "Eastern Persian", "Dari", "Aimaq", "Aimak", "Aymaq", "Eimak"},
	scripts = {"fa-Arab"},
	family = "ira-wes",
	ancestors = {"pal"},
	translit_module = "fa-translit",
	entry_name = {
		from = {u(0x064E), u(0x064F), u(0x0650), u(0x0651), u(0x0652)},
		to   = {}} ,
}

m["ff"] = {
	canonicalName = "Fula",
	otherNames = {"Adamawa Fulfulde", "Bagirmi Fulfulde", "Borgu Fulfulde", "Central-Eastern Niger Fulfulde", "Fulani", "Fulfulde", "Maasina Fulfulde", "Nigerian Fulfulde", "Pular", "Pulaar", "Western Niger Fulfulde"}, -- Maasina, etc are dialects, subsumed into this code
	scripts = {"Latn"},
	family = "alv-sng",
}

m["fi"] = {
	canonicalName = "Finnice",
	otherNames = {"Finnica", "Finnicae", "Finnici", "Finnicum", "Finnica", "Finnicae", "suomi", 
		"Finnicus", "Finnica", "Finnicarum"},
	scripts = {"Latn"},
	family = "fiu-fin",
	entry_name = {
		from = {"ˣ"},  -- Used to indicate gemination of the next consonant
		to   = {}},
	sort_key = {
		from = {"[áàâã]", "[éèêẽ]", "[íìîĩ]", "[óòôõ]", "[úùûũ]", "[ýỳŷüű]", "[øõő]", "æ" , "œ" , "[čç]", "š", "ž", "ß" , "[':]"},
		to   = {"a"	 , "e"	 , "i"	 , "o"	 , "u"	 ,  "y"	 , "ö"	, "ae", "oe", "c"   , "s", "z", "ss"}} ,
}

m["fj"] = {
	canonicalName = "Fidziane",
	otherNames = {"Fidziana", "Fidzianae", "Fidziani", "Fidzianum", "Fidziana", "Fidzianae", "?", 
		"Fidzianus", "Fidziana", "Fidzianarum"},
	scripts = {"Latn"},
	family = "poz-occ",
}

m["fo"] = {
	canonicalName = "Faeroice",
	otherNames = {"Faeroica", "Faeroicae", "Faeroici", "Faeroicum", "Faeroica", "Faeroicae", "føroyskt", 
		"Faeroicus", "Faeroica", "Faeroicarum"},
	scripts = {"Latn"},
	family = "gmq",
	ancestors = {"non"},
}

m["fr"] = {
	canonicalName = "Francogallice",
	otherNames = {"Francogallica", "Francogallicae", "Francogallici", "Francogallicum", "Francogallica", "Francogallicae", "français", 
		"Francogallicus", "Francogallica", "Francogallicarum", "Modern French"},
	scripts = {"Latn"},
	family = "roa",
	ancestors = {"frm"},
	sort_key = {
		from = {"[áàâä]", "[éèêë]", "[íìîï]", "[óòôö]", "[úùûü]", "[ýỳŷÿ]", "ç", "æ" , "œ" , "'"},
		to   = {"a"	 , "e"	 , "i"	 , "o"	 , "u"	 , "y"	 , "c", "ae", "oe"}},
	standardChars = "A-Za-z0-9ÀÂÇÉÈÊËÎÏÔŒÛÙÜàâçéèêëîïôœûùü" .. c.punc,
}

m["fy"] = {
	canonicalName = "Frisice",
	otherNames = {"Frisica", "Frisicae", "Frisici", "Frisicum", "Frisica", "Frisicae", "?", 
		"Frisicus", "Frisica", "Frisicarum", "Western Frisian", "Frisian", "Frysk"},
	scripts = {"Latn"},
	family = "gmw-fri",
	ancestors = {"ofs"},
}

m["ga"] = {
	canonicalName = "Hibernice",
	otherNames = {"Hibernica", "Hibernicae", "Hibernici", "Hibernicum", "Hibernica", "Hibernicae", "Gaeilge", 
		"Hibernicus", "Hibernica", "Hibernicarum", "Irish Gaelic"},
	scripts = {"Latn"},
	family = "cel-gae",
	ancestors = {"mga"},
	sort_key = {
		from = {"á", "é", "í", "ó", "ú", "ý", "ḃ" , "ċ" , "ḋ" , "ḟ" , "ġ" , "ṁ" , "ṗ" , "ṡ" , "ṫ" },
		to   = {"a", "e", "i", "o", "u", "y", "bh", "ch", "dh", "fh", "gh", "mh", "ph", "sh", "th"}} ,
}

m["gd"] = {
	canonicalName = "Gaelice",
	otherNames = {"Gaelica", "Gaelicae", "Gaelici", "Gaelicum", "Gaelica", "Gaelicae", "Gàidhlig", 
		"Gaelicus", "Gaelica", "Gaelicarum", "Highland Gaelic", "Scots Gaelic", "Scottish"},
	scripts = {"Latn"},
	family = "cel-gae",
	ancestors = {"mga"},
	sort_key = {
		from = {"[áà]", "[éè]", "[íì]", "[óò]", "[úù]", "[ýỳ]"},
		to   = {"a"   , "e"   , "i"   , "o"   , "u"   , "y"   }} ,
}

m["gl"] = {
	canonicalName = "Gallaice",
	otherNames = {"Gallaica", "Gallaicae", "Gallaici", "Gallaicum", "Gallaica", "Gallaicae", "galego", 
		"Gallaicus", "Gallaica", "Gallaicarum", "Galician"},
	scripts = {"Latn"},
	family = "roa",
	ancestors = {"roa-opt"},
	sort_key = {
		from = {"á", "é", "í", "ó", "ú"},
		to   = {"a", "e", "i", "o", "u"}} ,
}

m["gn"] = {
	canonicalName = "Guaraní",
	scripts = {"Latn"},
	family = "tup",
}

m["gu"] = {
	canonicalName = "Gujarati",
	scripts = {"Gujr"},
	family = "inc",
	ancestors = {"inc-ogu"},
	translit_module = "gu-translit",
}

m["gv"] = {
	canonicalName = "Manx",
	otherNames = {"Manx Gaelic"},
	scripts = {"Latn"},
	family = "cel-gae",
	ancestors = {"mga"},
	sort_key = {
		from = {"ç", "-"},
		to   = {"c"}} ,
}

m["ha"] = {
	canonicalName = "Hausa",
	scripts = {"Latn", "Arab"},
	family = "cdc-wst",
}

m["he"] = {
	canonicalName = "Hebraice",
	otherNames = {"Hebraica", "Hebraicae", "Hebraici", "Hebraicum", "Hebraica", "Hebraicae", "עִבְרִית", 
		"Hebraicus", "Hebraica", "Hebraicarum", "Ivrit"},
	scripts = {"Hebr", "Phnx"},
	family = "sem-can",
	entry_name = {
		from = {"[" .. u(0x0591) .. "-" .. u(0x05BD) .. u(0x05BF) .. "-" .. u(0x05C5) .. u(0x05C7) .. "]"},
		to   = {}} ,
}

m["hi"] = {
	canonicalName = "Hindice",
	otherNames = {"Hindica", "Hindicae", "Hindici", "Hindicum", "Hindica", "Hindicae", "हिन्दी", 
		"Hindicus", "Hindica", "Hindicarum", "hindī"},
	scripts = {"Deva"},
	family = "inc",
	ancestors = {"inc-ohi"},
	translit_module = "hi-translit",
}

m["ho"] = {
	canonicalName = "Hiri Motu",
	otherNames = {"Pidgin Motu", "Police Motu"},
	scripts = {"Latn"},
	family = "crp",
	ancestors = {"meu"},
}

m["hr"] = {
	canonicalName = "Croate",
	otherNames = {"Croata", "Croatae", "Croati", "Croatum", "Croata", "Croatae", "hrvatski", 
		"Croatus", "Croata", "Croatarum", "Croatian"},
	scripts = {"Latn"},
	family = "zlw",
}

m["ht"] = {
	canonicalName = "Haitiane",
	otherNames = {"Haitiana", "Haitianae", "Haitiani", "Haitianum", "Haitiana", "Haitianae", "kreyòl", 
		"Haitianus", "Haitiana", "Haitianarum", "Creole", "Haitian"},
	scripts = {"Latn"},
	family = "crp",
}

m["hu"] = {
	canonicalName = "Hungarice",
	otherNames = {"Hungarica", "Hungaricae", "Hungarici", "Hungaricum", "Hungarica", "Hungaricae", "magyar", 
		"Hungaricus", "Hungarica", "Hungaricarum"},
	scripts = {"Latn"},
	family = "fiu-ugr",
	ancestors = {"ohu"},
	sort_key = {
		from = {"á", "é", "í", "ó", "ú", "ő", "ű"},
		to   = {"a", "e", "i", "o", "u", "ö", "ü"}} ,
}

m["hy"] = {
	canonicalName = "Armenie",
	otherNames = {"Armenia", "Armeniae", "Armenii", "Armenium", "Armenia", "Armeniae", "Հայերէն", 
		"Armenius", "Armenia", "Armeniarum", "Modern Armenian", "Eastern Armenian", "Western Armenian"},
	scripts = {"Armn"},
	family = "hyx",
	ancestors = {"axm"},
	translit_module = "Armn-translit",
	sort_key = {
		from = {"ու", "և", "եւ"},
		to   = {"ւ", "եվ", "եվ"}},
	entry_name = {
		from = {"՞", "՜", "՛", "՟", "և", "<sup>յ</sup>", "<sup>ի</sup>"},
		to   = {"", "", "", "", "եւ", "յ", "ի"}} ,
}

m["hz"] = {
	canonicalName = "Herero",
	scripts = {"Latn"},
	family = "bnt",
}

-- 1=nomsgf, 2=nomplf, 3=nomplm, 4=nomsgn, 5=nompln, 6=gensgf, 7=ipsa, 8=nomsgm, 9=ablsgf, 10=genplf
m["ia"] = {
	"Interlingua", 35934, "art",
	otherNames = {"Interlingua", "Interlinguae", "Interlinguae", "Interlinguae", "Interlinguae", "Interlinguae", "Interlingua",
		"Interlinguae", "Interlingua", "Interlinguae"},
	scripts = {"Latn"},
}

m["id"] = {
	canonicalName = "Indonesie",
	otherNames = {"Indonesia", "Indonesiae", "Indonesii", "Indonesium", "Indonesia", "Indonesiae", "Bahasa Indonesia", 
		"Indonesius", "Indonesia", "Indonesiarum"},
	scripts = {"Latn"},
	family = "poz-mly",
	ancestors = {"ms"},
}

m["ie"] = {
	canonicalName = "Interlingue",
	otherNames = {"Occidental"},
	scripts = {"Latn"},
	family = "art",
}

m["ig"] = {
	canonicalName = "Igbo",
	scripts = {"Latn"},
	family = "nic-bco",
}

m["ii"] = {
	canonicalName = "Sichuan Yi",
	otherNames = {"Nuosu", "Nosu", "Northern Yi", "Liangshan Yi"},
	scripts = {"Yiii"},
	family = "tbq-lol",
}

m["ik"] = {
	canonicalName = "Inupiak",
	otherNames = {"Inupiaq", "Iñupiaq", "Inupiatun"},
	scripts = {"Latn"},
	family = "esx-inu",
}

m["io"] = {
	canonicalName = "Ido",
	scripts = {"Latn"},
	family = "art",
}

m["is"] = {
	canonicalName = "Islandice",
	otherNames = {"Islandica", "Islandicae", "Islandici", "Islandicum", "Islandica", "Islandicae", "íslenska", 
		"Islandica", "Islandica", "Islandicarum"},
	scripts = {"Latn"},
	family = "gmq",
	ancestors = {"non"},
}

m["it"] = {
	canonicalName = "Italice",
	otherNames = {"Italica", "Italicae", "Italici", "Italicum", "Italica", "Italicae", "italiano", 
		"Italicus", "Italica", "Italicarum", "Italiana"},
	scripts = {"Latn"},
	family = "roa",
	ancestors = {"roa-oit"},
	sort_key = {
		from = {"[àáâäå]", "[èéêë]", "[ìíîï]", "[òóôö]", "[ùúûü]"},
		to   = {"a"	  , "e"	 , "i"	 , "o"	 , "u"	 }} ,
}

m["iu"] = {
	canonicalName = "Inuktitut",
	otherNames = {"Eastern Canadian Inuktitut", "Eastern Canadian Inuit", "Western Canadian Inuktitut", "Western Canadian Inuit", "Western Canadian Inuktun", "Inuinnaq", "Inuinnaqtun", "Inuvialuk", "Inuvialuktun", "Nunavimmiutit", "Nunatsiavummiut", "Aivilimmiut", "Natsilingmiut", "Kivallirmiut", "Siglit", "Siglitun"},
	scripts = {"Cans", "Latn"},
	family = "esx-inu",
	translit_module = "iu-translit",
}

m["ja"] = {
	canonicalName = "Iaponice",
	otherNames = {"Iaponica", "Iaponicae", "Iaponici", "Iaponicum", "Iaponica", "Iaponicae", "日本語", 
	"Iaponicus", "Iaponica", "Iaponicarum", "Nihongo", "Modern Japanese", "Nipponese"},
	scripts = {"Jpan", "Latn", "Hira"},
	family = "jpx",
	ancestors = {"ojp"},
}

m["jv"] = {
	canonicalName = "Iavense",
	otherNames = {"Iavensis", "Iavenses", "Iavenses", "Iavense", "Iavensia", "Iavensis", "basa Jawa", 
		"Iavensis", "Iavensi", "Iavensium"},
	scripts = {"Latn", "Java"},
	family = "poz-sus",
	translit_module = "jv-translit",
	ancestors = {"kaw"},
	link_tr = true,
}

m["ka"] = {
	canonicalName = "Georgiane",
	otherNames = {"Georgiana", "Georgianae", "Georgiani", "Georgianum", "Georgiana", "Georgianae", "ქართული", 
		"Georgianus", "Georgiana", "Georgianarum", "Kartvelian"},
	scripts = {"Geor", "Geok"},
	family = "ccs-gzn",
	ancestors = {"oge"},
	translit_module = "Geor-translit",
	entry_name = {
		from = {"̂"},
		to   = {""}},
}

m["kg"] = {
	canonicalName = "Kongo",
	otherNames = {"Kikongo", "Koongo", "Laari", "San Salvador Kongo", "Yombe"},
	scripts = {"Latn"},
	family = "bnt",
}

m["ki"] = {
	canonicalName = "Kikuyu",
	otherNames = {"Gikuyu", "Gĩkũyũ"},
	scripts = {"Latn"},
	family = "bnt",
}

m["kj"] = {
	canonicalName = "Kwanyama",
	otherNames = {"Kuanyama", "Oshikwanyama"},
	scripts = {"Latn"},
	family = "bnt",
}

m["kk"] =
	{
	"Kazachice", "Q9252", "trk-kno",
	otherNames = {"Kazachica", "Kazachicae", "Kazachici", "Kazachicum", "Kazachica", "Kazachicae", "Қазақ тілі", 
		"Kazachicus", "Kazachica", "Kazachicarum"},
	scripts = {"Cyrl", "Latn", "kk-Arab"},
	translit_module = "kk-translit",
	override_translit = true,
	}

m["kl"] = {
	canonicalName = "Groenlandice",
	otherNames = {"Groenlandica", "Groenlandicae", "Groenlandici", "Groenlandicum", "Groenlandica", "Groenlandicae", "Kalaallisut", 
		"Groenlandicus", "Groenlandica", "Groenlandicarum"},
	scripts = {"Latn"},
	family = "esx-inu",
}

m["km"] = {
	canonicalName = "Khmer",
	otherNames = {"Cambodian"},
	scripts = {"Khmr"},
	family = "mkh",
	ancestors = {"mkh-mkm"},
	translit_module = "km-translit",
}

m["kn"] = {
	canonicalName = "Kannada",
	scripts = {"Knda"},
	family = "dra",
	translit_module = "kn-translit",
}

m["ko"] = {
	canonicalName = "Coreane",
	otherNames = {"Coreana", "Coreanae", "Coreani", "Coreanum", "Coreana", "Coreanae", "한국어", 
		"Coreanus", "Coreana", "Coreanarum", "Modern Korean"},
	scripts = {"Kore"},
	family = "qfa-kor",
	ancestors = {"okm"},
	translit_module = "ko-translit",
}

m["kr"] = {
	canonicalName = "Kanuri",
	otherNames = {"Kanembu", "Bilma Kanuri", "Central Kanuri", "Manga Kanuri", "Tumari Kanuri"},
	scripts = {"Latn"},
	family = "ssa",
}

m["ks"] = {
	canonicalName = "Caspirice",
	otherNames = {"Caspirica", "Caspiricae", "Caspirici", "Caspiricum", "Caspirica", "Caspiricae", "कॉशुर / کٲشُر", 
		"Caspiricus", "Caspirica", "Caspiricarum", "Kashmiri"},
	scripts = {"ks-Arab", "Deva"},
	family = "inc-dar",
}

m["ku"] = {
	canonicalName = "Corduene",
	otherNames = {"Corduena", "Corduenae", "Cordueni", "Corduenum", "Corduena", "Corduenae", "kurdî", 
		"Corduenus", "Corduena", "Corduenarum"},
	scripts = {"Latn", "ku-Arab", "Armn", "Cyrl"},
	family = "ira-wes",
}

m["kv"] = {
	"Komiense",
	"Q34114",
	"urj-prm",
	otherNames = {"Komiensis", "Komienses", "Komienses", "Komiense", "Komiensia", "Komiensis", "Коми кыв", 
	"Komiensis", "Komiensi", "Komiensium", "Komi", "Komi-Zyryan"},
	scripts = Cyrl,
	translit_module = "kv-translit",
	override_translit = true,
}

m["kw"] = {
	canonicalName = "Cornubice",
	otherNames = {"Cornubica", "Cornubicae", "Cornubici", "Cornubicum", "Cornubica", "Cornubicae", "Kernowek", 
		"Cornubicus", "Cornubica", "Cornubicarum"},
	scripts = {"Latn"},
	family = "cel-bry",
	ancestors = {"cnx"},
}

m["ky"] = {
	canonicalName = "Kyrgesse",
	otherNames = {"Kyrgessa", "Kyrgessae", "Kyrgessi", "Kyrgessum", "Kyrgessa", "Kyrgessae", "кыргызча", 
		"Kyrgessus", "Kyrgessa", "Kyrgessarum", "Chirgisica", "Kirghiz", "Kirgiz"},
	scripts = {"Cyrl", "Latn", "Arab"},
	family = "trk-kip",
	translit_module = "ky-translit",
}

m["la"] = {
	canonicalName = "Latine",
	otherNames = {"Latina", "Latinae", "Latini", "Latinum", "Latina", "Latinae", "Latine", 
		"Latinus", "Latina", "Latinarum"},
	scripts = {"Latn"},
	family = "itc",
	ancestors = {"itc-ola"},
	entry_name = {
		from = {"[ĀĂ]", "[āă]", "[ĒĔ]", "[ēĕë]", "[ĪĬÏ]", "[īĭï]", "[ŌŎ]", "[ōŏ]", "[ŪŬÜ]", "[ūŭü]", "Ȳ", "ȳ", MACRON, BREVE, DIAER},
		to   = {"A", "a", "E", "e", "I", "i", "O", "o", "U", "u", "Y", "y"}},
}

m["lb"] = {
	canonicalName = "Luxemburgice",
	otherNames = {"Luxemburgica", "Luxemburgicae", "Luxemburgici", "Luxemburgicum", "Luxemburgica", "Luxemburgicae", "Lëtzebuergesch", 
		"Luxemburgicus", "Luxemburgica", "Luxemburgicarum"},
	scripts = {"Latn"},
	family = "gmw",
	ancestors = {"gmh"},
}

m["lg"] = {
	canonicalName = "Luganda",
	otherNames = {"Ganda"},
	scripts = {"Latn"},
	family = "bnt",
}

m["li"] = {
	canonicalName = "Limburgice",
	otherNames = {"Limburgica", "Limburgicae", "Limburgici", "Limburgicum", "Limburgica", "Limburgicae", "Limburgs", 
		"Limburgicus", "Limburgica", "Limburgicarum", "Limburgan", "Limburgian", "Limburgic"},
	scripts = {"Latn"},
	family = "gmw",
	ancestors = {"dum"},
}

m["ln"] = {
	canonicalName = "Lingala",
	scripts = {"Latn"},
	family = "bnt",
}

m["lo"] = {
	canonicalName = "Lao",
	otherNames = {"Laotian"},
	scripts = {"Laoo"},
	family = "tai-swe",
	translit_module = "lo-translit",
}

m["lt"] = {
	canonicalName = "Lithuanice",
	otherNames = {"Lithuanica", "Lithuanicae", "Lithuanici", "Lithuanicum", "Lithuanica", "Lithuanicae", "lietuvių", 
		"Lithuanicus", "Lithuanica", "Lithuanicarum"},
	scripts = {"Latn"},
	family = "bat",
	ancestors = {"olt"},
	entry_name = {
		from = {"[áãà]", "[ÁÃÀ]", "[éẽè]", "[ÉẼÈ]", "[íĩì]", "[ÍĨÌ]", "[ýỹ]", "[ÝỸ]", "ñ", "[óõò]", "[ÓÕÒ]", "[úũù]", "[ÚŨÙ]", ACUTE, GRAVE, TILDE},
		to   = {"a",       "A",     "e",     "E",     "i",     "I",     "y",   "Y",   "n",   "o",    "O",     "u",      "U"}} ,
}

m["lu"] = {
	canonicalName = "Luba-Katanga",
	scripts = {"Latn"},
	family = "bnt",
}

m["lv"] = {
	canonicalName = "Lettice",
	otherNames = {"Lettica", "Letticae", "Lettici", "Letticum", "Lettica", "Letticae", "latviešu", 
		"Letticus", "Lettica", "Letticarum", "Lettonica", "Lettish", "Lett"},
	scripts = {"Latn"},
	family = "bat",
}

-- 1=nomsgf, 2=nomplf, 3=nomplm, 4=nomsgn, 5=nompln, 6=gensgf, 7=ipsa, 8=nomsgm, 9=ablsgf, 10=genplf
m["ma"] = {
	canonicalName = "Magare",
	otherNames = {"Magara", "Magarae", "Magari", "Magarum", "Magara", "Magarae", "léngua magara", 
		"Magarus", "Magara", "Magararum", "Magarian"},
	scripts = {"Latn"},
	family = "roa-itd",
}

m["mg"] = {
	"Madagascariense", 7930, "poz-bre",
	otherNames = {"Madagascariensis", "Madagascarienses", "Madagascarienses", "Madagascariense", "Madagascariensia", "Madagascariensis", "malagasy", 
		"Madagascariensis", "Madagascariensi", "Madagascariensium", "Betsimisaraka Malagasy", "Betsimisaraka", "Northern Betsimisaraka Malagasy", "Northern Betsimisaraka", "Southern Betsimisaraka Malagasy", "Southern Betsimisaraka", "Bara Malagasy", "Bara", "Masikoro Malagasy", "Masikoro", "Antankarana", "Antankarana Malagasy", "Plateau Malagasy", "Sakalava", "Tandroy Malagasy", "Tandroy", "Tanosy", "Tanosy Malagasy", "Tesaka", "Tsimihety", "Tsimihety Malagasy"},
	scripts = {"Latn"},
	family = "poz-bre",
}

m["mh"] = {
	"Marsaliense", 36280, "poz-mic",
	otherNames = {"Marsaliensis", "Marsalienses", "Marsalienses", "Marsaliense", "Marsaliensia", "Marsaliensis", "Kajin M̧ajeļ", 
	"Marsaliensis", "Marsaliensi", "Marsaliensium", "Kajin Majōl", "Marshallese", "Ebon"},
	scripts = {"Latn"},
	sort_key = {
		from = {"ā" , "ļ" , "m̧" , "ņ" , "n̄"  , "o̧" , "ō"  , "ū" },
		to   = {"a~", "l~", "m~", "n~", "n~~", "o~", "o~~", "u~"}} ,
}

m["mi"] = {
	"Maorice", 36451, "poz-pep",
	otherNames = {"Maorica", "Maoricae", "Maorici", "Maoricum", "Maorica", "Maoricae", "Māori", 
		"Maoricus", "Maorica", "Maoricarum"},
	scripts = {"Latn"},
}

m["mk"] = {
	"Macedonice", 9296, "zls",
	otherNames = {"Macedonica", "Macedonicae", "Macedonici", "Macedonicum", "Macedonica", "Macedonicae", "Македонски јазик", 
	"Macedonicus", "Macedonica", "Macedonicarum" },
	scripts = {"Cyrl"},
	translit_module = "mk-translit",
	entry_name = {
		from = {ACUTE},
		to   = {}},
}

m["ml"] = {
	"Malabarice", 36236, "dra",
	otherNames = {"Malabarica", "Malabaricae", "Malabarici", "Malabaricum", "Malabarica", "Malabaricae", "മലയാളം", 
	"Malabaricus", "Malabarica", "Malabaricarum", "Malayalam" },
	scripts = {"Mlym"},
	translit_module = "ml-translit",
}

m["mn"] = {
	canonicalName = "Mogolice",
	otherNames = {"Mogolica", "Mogolicae", "Mogolici", "Mogolicum", "Mogolica", "Mogolicae", "Монгол хэл", 
		"Mogolicus", "Mogolica", "Mogolicarum", "Khalkha Mongolian"},
	scripts = {"Cyrl", "Mong"},
	family = "xgn",
	ancestors = {"cmg"},
	translit_module = "mn-translit",
}

m["mr"] = {
	canonicalName = "Marathi",
	scripts = {"Deva", "Modi"},
	family = "inc",
	ancestors = {"omr"},
	translit_module = "hi-translit",
}

m["ms"] = {
	canonicalName = "Malaice",
	otherNames = {"Malaica", "Malaicae", "Malaici", "Malaicum", "Malaica", "Malaicae", "Bahasa Melayu", 
		"Malaicus", "Malaica", "Malaicarum"},
	scripts = {"Latn", "Arab"},
	family = "poz-mly",
}

m["mt"] = {
	canonicalName = "Melitense",
	otherNames = {"Melitensis", "Melitenses", "Melitenses", "Melitense", "Melitensia", "Melitensis", "Malti", 
	"Melitensis", "Melitensi", "Melitensium"},
	scripts = {"Latn"},
	family = "sem-arb",
	ancestors = {"sqr"},
}

m["my"] = {
	canonicalName = "Birmanice",
	otherNames = {"Birmanica", "Birmanicae", "Birmanici", "Birmanicum", "Birmanica", "Birmanicae", "မ္ရန္‌မာစာ", 
		"Birmanicus", "Birmanica", "Birmanicarum", "Burmese", "Myanmar"},
	scripts = {"Mymr"},
	family = "tbq-brm",
	ancestors = {"obr"},
	translit_module = "my-translit",
}

m["na"] = {
	canonicalName = "Nauruane",
	otherNames = {"Nauruana", "Nauruanae", "Nauruani", "Nauruanum", "Nauruana", "Nauruanae", "Nauru", 
		"Nauruanus", "Nauruana", "Nauruanarum"},
	scripts = {"Latn"},
	family = "poz-mic",
}

m["nb"] = {
	canonicalName = "Dano-Norvegice",
	otherNames = {"Dano-Norvegica", "Dano-Norvegicae", "Dano-Norvegici", "Dano-Norvegicum", "Dano-Norvegica", "Dano-Norvegicae", "Bokmål",
	"Dano-Norvegicus", "Dano-Norvegica", "Dano-Norvegicarum", "Norwegian", "Norsk"},
	scripts = {"Latn"},
	family = "gmq",
	ancestors = {"gmq-mno"},
	wikimedia_codes = {"no"},
}

m["nd"] = {
	canonicalName = "Northern Ndebele",
	otherNames = {"North Ndebele"},
	scripts = {"Latn"},
	family = "bnt-ngu",
}

m["ne"] = {
	canonicalName = "Nepalense",
	otherNames = {"Nepalensis", "Nepalenses", "Nepalenses", "Nepalense", "Nepalensia", "Nepalensis", "नेपाली", 
		"Nepalensis", "Nepalensi", "Nepalensium", "Nepalese"},
	scripts = {"Deva"},
	family = "inc",
	translit_module = "ne-translit",
}

m["ng"] = {
	canonicalName = "Ndonga",
	scripts = {"Latn"},
	family = "bnt",
}

m["nl"] = {
	canonicalName = "Batave",
	otherNames = {"Batava", "Batavae", "Batavi", "Batavum", "Batava", "Batavae", "Nederlands", 
		"Batavus", "Batava", "Batavarum", "Netherlandic", "Flemish"},
	scripts = {"Latn"},
	family = "gmw",
	ancestors = {"dum"},
	sort_key = {
		from = {"[äáâå]", "[ëéê]", "[ïíî]", "[öóô]", "[üúû]", "ç", "ñ", "^-"},
		to   = {"a"	 , "e"	, "i"	, "o"	, "u"	, "c", "n"}} ,
}

m["nn"] = {
	canonicalName = "Neonorvegice",
	otherNames = {"Neonorvegica", "Neonorvegicae", "Neonorvegici", "Neonorvegicum", "Neonorvegica", "Neonorvegicae", "Nynorsk", 
		"Neonorvegicus", "Neonorvegica", "Neonorvegicarum", "New Norwegian"},
	scripts = {"Latn"},
	family = "gmq",
	ancestors = {"gmq-mno"},
}

m["no"] = {
	canonicalName = "Norvegice",
	otherNames = {"Norvegica", "Norvegicae", "Norvegici", "Norvegicum", "Norvegica", "Norvegicae", "Norsk", 
		"Norvegicus", "Norvegica", "Norvegicarum", "Norwegian"},
	scripts = {"Latn"},
	family = "gmq",
	ancestors = {"gmq-mno"},
}

m["nr"] = {
	canonicalName = "Southern Ndebele",
	otherNames = {"South Ndebele"},
	scripts = {"Latn"},
	family = "bnt-ngu",
}

m["nv"] = {
	canonicalName = "Navajo",
	scripts = {"nv-Latn"},
	family = "apa",
	sort_key = {
		from = {"[áą]", "[éę]", "[íį]", "[óǫ]", "ń", "^n([djlt])", "ł" , "[ʼ’']", ACUTE},
		to   = {"a"   , "e"   , "i"   , "o"   , "n", "ni%1"	  , "l"}}, -- the copyright sign is used to guarantee that ł will always be sorted after all other words with l
}

m["ny"] = {
	canonicalName = "Chichewa",
	otherNames = {"Chicheŵa", "Chinyanja", "Nyanja", "Chewa"},
	scripts = {"Latn"},
	family = "bnt",
	entry_name = {
		from = {ACUTE},
		to   = {}},
}

m["oc"] = {
	canonicalName = "Occitane",
	otherNames = {"Occitana", "Occitanae", "Occitani", "Occitanum", "Occitana", "Occitanae", "occitan", 
		"Occitanus", "Occitana", "Occitanarum",
		"Provençal", "Auvergnat", "Auvernhat", "Gascon", "Languedocien", "Lengadocian", "Shuadit", "Chouhadite", "Chouhadit", "Chouadite", "Chouadit", "Shuhadit", "Judeo-Provençal", "Judeo-Provencal", "Judeo-Comtadin"},
	scripts = {"Latn", "Hebr"},
	family = "roa",
	ancestors = {"pro"},
	sort_key = {
		from = {"[àá]", "[èé]", "[íï]", "[òó]", "[úü]", "ç", "([lns])·h"},
		to   = {"a"   , "e"   , "i"   , "o"   , "u"   , "c", "%1h"	  }} ,
}

m["oj"] = {
	"Ojibwayense",
	"Q33875",
	"alg",
	otherNames = {"Ojibwayensis", "Ojibwayenses", "Ojibwayenses", "Ojibwayense", "Ojibwayensia", "Ojibwayensis", "Anishinaabemowin / ᐊᓂᔑᓈᐯᒧᐎᓐ", 
	"Ojibwayensis", "Ojibwayensi", "Ojibwayensium"},
	aliases = {"Ojibway", "Ojibwa"},
	varieties = {{"Chippewa", "Ojibwemowin", "Southwestern Ojibwa"}},
	scripts = {"Cans", "Latn"},
	sort_key = {
		from = {"aa", "ʼ",  "ii", "oo", "sh", "zh"},
		to   = {"a~", "h~", "i~", "o~", "s~", "z~"}} ,
}

m["om"] = {
	canonicalName = "Oromo",
	otherNames = {"Orma", "Borana-Arsi-Guji Oromo", "West Central Oromo"},
	scripts = {"Latn", "Ethi"},
	family = "cus",
}

m["or"] = {
	canonicalName = "Oriya",
	otherNames = {"Odia", "Oorya"},
	scripts = {"Orya"},
	family = "inc",
	ancestors = {"pka"},
}

m["os"] = {
	canonicalName = "Alane",
	otherNames = {"Ossete", "Ossetic", "Digor", "Iron"},
	scripts = {"Cyrl", "Geor", "Latn"},
	family = "ira",
	translit_module = "os-translit",
	ancestors = {"oos"},
	entry_name = {
		from = {GRAVE, ACUTE},
		to   = {}} ,
}

m["pa"] = {
	canonicalName = "Punjabi",
	otherNames = {"Panjabi"},
	scripts = {"Guru", "Arab", "Deva"},
	family = "inc",
	translit_module = "pa-translit",
	ancestors = {"psu"},
}

m["pi"] = {
	canonicalName = "Pali",
	scripts = {"Latn", "Deva", "Sinh", "Mymr", "Khmr", "Thai"},
	family = "inc",
	ancestors = {"bh"},
	sort_key = {
		from = {"ā", "ī", "ū", "ḍ", "ḷ", "[ṁṃ]", "[ṇñṅ]", "ṭ"},
		to   = {"a", "i", "u", "d", "l", "m"   , "n"	, "t"}} ,
}

m["pl"] = {
	canonicalName = "Polonice",
	otherNames = {"Polonica", "Polonicae", "Polonici", "Polonicum", "Polonica", "Polonicae", "język polski",
		"Polonicus", "Polonica", "Polonicarum"},
	scripts = {"Latn"},
	family = "zlw",
	ancestors = {"zlw-opl"},
	sort_key = {
		from = {"[Ąą]", "[Ćć]", "[Ęę]", "[Łł]", "[Ńń]", "[Óó]", "[Śś]", "[Żż]", "[Źź]"},
		to   = {
			"a" .. u(0x10FFFF),
			"c" .. u(0x10FFFF),
			"e" .. u(0x10FFFF),
			"l" .. u(0x10FFFF),
			"n" .. u(0x10FFFF),
			"o" .. u(0x10FFFF),
			"s" .. u(0x10FFFF),
			"z" .. u(0x10FFFF),
			"z" .. u(0x10FFFE)}} ,
}

m["ps"] = {
	canonicalName = "Afganice",
	otherNames = {"Afganica", "Afganicae", "Afganici", "Afganicum", "Afganica", "Afganicae", "پښتو", 
		"Afganicus", "Afganica", "Afganicarum", "Pashtun", "Pushto", "Pashtu", "Central Pashto", "Northern Pashto", "Southern Pashto", "Pukhto", "Pakhto", "Pakkhto", "Afghani"},
	scripts = {"ps-Arab"},
	family = "ira-eas",
}

m["pt"] = {
	canonicalName = "Lusitane",
	otherNames = {"Lusitana", "Lusitanae", "Lusitani", "Lusitanum", "Lusitana", "Lusitanae", "português", 
		"Lusitanus", "Lusitana", "Lusitanarum", "Modern Portuguese"},
	scripts = {"Latn"},
	family = "roa",
	ancestors = {"roa-opt"},
	sort_key = {
		from = {"[àãáâä]", "[èẽéêë]", "[ìĩíï]", "[òóôõö]", "[üúùũ]", "ç", "ñ"},
		to   = {"a"	  , "e"	  , "i"	 , "o"	  , "u"	 , "c", "n"}} ,
}

m["qu"] = {
	canonicalName = "Quechua",
	otherNames = {"Quechua", "Quechuae", "Quechui", "Quechuum", "Quechua", "Quechuae", "Runasimi", 
		"Quechuus", "Quechua", "Quechuarum", "Qhichwa simi"},
	scripts = {"Latn"},
	family = "qwe",
}

m["rm"] = {
	canonicalName = "Raetice",
	otherNames = {"Raetica", "Raeticae", "Raetici", "Raeticum", "Raetica", "Raeticae", "rumantsch", 
		"Raeticus", "Raetica", "Raeticarum", "Romansh", "Romanche"},
	scripts = {"Latn"},
	family = "roa",
}

m["rn"] = {
	canonicalName = "Kirundi",
	scripts = {"Latn"},
	family = "bnt",
}

m["ro"] = {
	canonicalName = "Dacoromane",
	otherNames = {"Dacoromana", "Dacoromanae", "Dacoromani", "Dacoromanum", "Dacoromana", "Dacoromanae", "româna", 
		"Dacoromanus", "Dacoromana", "Dacoromanarum", "Daco-Romanian", "Roumanian", "Rumanian"},
	scripts = {"Latn", "Cyrl"},
	family = "roa",
	sort_key = {
        from = {"ă" , "â"  , "î" , "ș" , "ț" },
        to   = {"a~", "a~~", "i~", "s~", "t~"}},
}

m["ru"] = {
	canonicalName = "Ruthenice",
	otherNames = {"Ruthenica", "Ruthenicae", "Ruthenici", "Ruthenicum", "Ruthenica", "Ruthenicae", "русский язык", 
		"Ruthenicus", "Ruthenica", "Ruthenicarum"},
	scripts = {"Cyrl"},
	family = "zle",
	translit_module = "ru-translit",
	sort_key = {
		from = {"ё"},
		to   = {"е" .. mw.ustring.char(0x10FFFF)}},
	entry_name = {
		from = {"Ѐ", "ѐ", "Ѝ", "ѝ", GRAVE, ACUTE},
		to   = {"Е", "е", "И", "и"}},
}

m["rw"] = {
	canonicalName = "Kinyarwanda",
	otherNames = {"Rwanda"},
	scripts = {"Latn"},
	family = "bnt",
}

m["sa"] = {
	canonicalName = "Sanscrite",
	otherNames = {"Sanscrita", "Sanscritae", "Sanscriti", "Sanscritum", "Sanscrita", "Sanscritae", "संस्कृत", 
		"Sanscritus", "Sanscrita", "Sanscritarum"},
	scripts = {"Deva", "Beng", "Brah", "Gran", "Gujr", "Guru", "Khar", "Knda", "Mlym", "Mymr", "Orya", "Shrd", "Sinh", "Taml", "Telu", "Thai", "Tibt"},
	family = "inc",
	translit_module = "sa-translit",
}

-- 1=nomsgf, 2=nomplf, 3=nomplm, 4=nomsgn, 5=nompln, 6=gensgf, 7=ipsa, 8=nomsgm, 9=ablsgf, 10=genplf
m["sc"] = {
	"Sarde", "Q33976", "roa",
	otherNames = {"Sarda", "Sardae", "Sardi", "Sardum", "Sarda", "Sardae", "sarda", 
		"Sardus", "Sarda", "Sardarum", "Campidanese", "Campidanese Sardinian", "Logudorese", "Logudorese Sardinian", "Nuorese", "Nuorese Sardinian"},
	scripts = {"Latn"},
}

m["sd"] = {
	canonicalName = "Sindhi",
	scripts = {"sd-Arab", "Deva"},
	family = "inc",
}

-- otherNames is used for inflected forms: 1=nomsgf, 2=nomplf, 3=nomplm, 4=nomsgn, 5=nompln, 6=gensgf
m["se"] = {
	canonicalName = "Lapponica Septentrionali",
	otherNames = {"Lapponica Septentrionalis", "Lapponicae Septentrionales", "Lapponici Septentrionales", "Lapponicum Septentrionale", "Lapponica Septentrionalia", "Lapponicae Septentrionalis", "Davvisámegiella",
		"Lapponicus Septentrionalis", "Lapponica Septentrionali", "Lapponicarum Septentrionalium", "Samica septentrionalis", "North Sami", "Northern Saami", "North Saami"},
	scripts = {"Latn"},
	family = "smi",
	entry_name = {
		from = {"([đflmnŋrsšŧv])'%1"},
		to   = {"%1%1"} },
}

m["sg"] = {
	canonicalName = "Sango",
	scripts = {"Latn"},
	family = "crp",
}

m["sh"] = {
	canonicalName = "Servocroate",
	otherNames = {"Servocroata", "Servocroatae", "Servocroati", "Servocroatum", "Servocroata", "Servocroatae", "srpskohrvatski", 
		"Servocroatus", "Servocroata", "Servocroatarum", "BCS", "Croato-Serbian", "Serbocroatian", "Bosnian", "Croatian", "Montenegrin", "Serbian"},
	scripts = {"Latn", "Cyrl"},
	family = "zls",
	entry_name = {
		from = {"[ȀÀȂÁĀ]", "[ȁàȃáā]", "[ȄÈȆÉĒ]", "[ȅèȇéē]", "[ȈÌȊÍĪ]", "[ȉìȋíī]", "[ȌÒȎÓŌ]", "[ȍòȏóō]", "[ȐȒŔ]", "[ȑȓŕ]", "[ȔÙȖÚŪ]", "[ȕùȗúū]", "Ѐ", "ѐ", "[ӢЍ]", "[ӣѝ]", "[Ӯ]", "[ӯ]", GRAVE, ACUTE, DGRAVE, INVBREVE, MACRON},
		to   = {"A"	  , "a"	  , "E"	  , "e"	  , "I"	  , "i"	  , "O"	  , "o"	  , "R"	, "r"	, "U"	  , "u"	  , "Е", "е", "И"   , "и", "У", "у"   }},
	wikimedia_codes = {"sh", "bs", "hr", "sr"},
}

m["si"] = {
	canonicalName = "Sinhalese",
	otherNames = {"Singhalese", "Sinhala"},
	scripts = {"Sinh"},
	family = "inc",
	ancestors = {"pmh"},
	translit_module = "si-translit",
}

m["sk"] = {
	canonicalName = "Slovace",
	otherNames = {"Slovaca", "Slovacae", "Slovaci", "Slovacum", "Slovaca", "Slovacae", "slovenčina", 
		"Slovacus", "Slovaca", "Slovacarum"},
	scripts = {"Latn"},
	family = "zlw",
	sort_key = {
		from = {"[áä]", "é", "í", "[óô]", "ú", "ý", "ŕ", "ĺ"},
		to   = {"a"   , "e", "i", "o"   , "u", "y", "r", "l"}} ,
}

m["sl"] = {
	canonicalName = "Slovene",
	otherNames = {"Slovena", "Slovenae", "Sloveni", "Slovenum", "Slovena", "Slovenae", "slovenščina", 
		"Slovenus", "Slovena", "Slovenarum", "Slovenian"},
	scripts = {"Latn"},
	family = "zls",
	entry_name = {
		from = {"[ÁÀÂȂȀ]", "[áàâȃȁ]", "[ÉÈÊȆȄỆẸ]", "[éèêȇȅệẹə]", "[ÍÌÎȊȈ]", "[íìîȋȉ]", "[ÓÒÔȎȌỘỌ]", "[óòôȏȍộọ]", "[ŔȒȐ]", "[ŕȓȑ]", "[ÚÙÛȖȔ]", "[úùûȗȕ]", "ł", GRAVE, ACUTE, DGRAVE, INVBREVE, CIRC, DOTBELOW},
		to   = {"A"	  , "a"	  , "E"		, "e"		 , "I"	  , "i"	  , "O"		, "o"		, "R"	, "r"	, "U"	  , "u"	  , "l"}} ,
}

m["sm"] = {
	canonicalName = "Samoane",
	otherNames = {"Samoana", "Samoanae", "Samoani", "Samoanum", "Samoana", "Samoanae", "gagana Sāmoa", 
		"Samoanus", "Samoana", "Samoanarum"},
	scripts = {"Latn"},
	family = "poz-pol",
}

m["sn"] = {
	canonicalName = "Shona",
	scripts = {"Latn"},
	family = "bnt",
}

m["so"] = {
	canonicalName = "Somali",
	scripts = {"Latn", "Arab", "Osma"},
	family = "cus",
	entry_name = {
		from = {"[ÁÀÂ]", "[áàâ]", "[ÉÈÊ]", "[éèê]", "[ÍÌÎ]", "[íìî]", "[ÓÒÔ]", "[óòô]", "[ÚÙÛ]", "[úùû]", "[ÝỲ]", "[ýỳ]"},
		to   = {"A"	  , "a"	  , "E"	, "e" , "I"	  , "i"	  , "O"	, "o"	, "U"  , "u", "Y", "y"}} ,
}

m["sq"] = {
	canonicalName = "Illyrice",
	otherNames = {"Illyrica", "Illyricae", "Illyrici", "Illyricum", "Illyrica", "Illyricae", "shqipja", 
		"Illyricus", "Illyrica", "Illyricarum"},
	scripts = {"Latn", "Elba"},
	family = "sqj",
	sort_key = {
		from = { '[âãä]', '[ÂÃÄ]', '[êẽë]', '[ÊẼË]', 'ĩ', 'Ĩ', 'õ', 'Õ', 'ũ', 'Ũ', 'ỹ', 'Ỹ', 'ç', 'Ç' },
		to   = {     'a',     'A',     'e',     'E', 'i', 'I', 'o', 'O', 'u', 'U', 'y', 'Y', 'c', 'C' } } ,
}

m["sr"] = {
	canonicalName = "Service",
	otherNames = {"Servica", "Servicae", "Servici", "Servicum", "Servica", "Servicae", "српски / srpski", 
		"Servicus", "Servica", "Servicarum"},
	scripts = {"Latn", "Cyrl"},
	family = "zls",
	translit_module = "sh-translit",
	entry_name = {
		from = {"[ȀÀȂÁĀ]", "[ȁàȃáā]", "[ȄÈȆÉĒ]", "[ȅèȇéē]", "[ȈÌȊÍĪ]", "[ȉìȋíī]", "[ȌÒȎÓŌ]", "[ȍòȏóō]", "[ȐȒŔ]", "[ȑȓŕ]", "[ȔÙȖÚŪ]", "[ȕùȗúū]", "Ѐ", "ѐ", "[ӢЍ]", "[ӣѝ]", "[Ӯ]", "[ӯ]", GRAVE, ACUTE, DGRAVE, INVBREVE, MACRON},
		to   = {"A"	  , "a"	  , "E"	  , "e"	  , "I"	  , "i"	  , "O"	  , "o"	  , "R"	, "r"	, "U"	  , "u"	  , "Е", "е", "И"   , "и", "У", "у"   }},
	wikimedia_codes = {"sh", "bs", "hr", "sr"},
}

m["ss"] = {
	canonicalName = "Swazi",
	otherNames = {"Swati"},
	scripts = {"Latn"},
	family = "bnt-ngu",
}

m["st"] = {
	canonicalName = "Sotho Meridionali",
	otherNames = {"Sesotho", "Southern Sesotho", "Southern Sotho"},
	scripts = {"Latn"},
	family = "bnt",
}

m["su"] = {
	canonicalName = "Sondaice",
	scripts = {"Latn", "Sund"},
	family = "poz-msa",
	translit_module = "su-translit",
}

m["sv"] = {
	canonicalName = "Suecice",
	otherNames = {"Suecica", "Suecicae", "Suecici", "Suecicum", "Suecica", "Suecicae", "svenska", 
		"Suecicus", "Suecica", "Suecicarum"},
	scripts = {"Latn"},
	family = "gmq",
	ancestors = {"gmq-osw"},
}

m["sw"] = {
	canonicalName = "Suahelice",
	otherNames = {"Suahelica", "Suahelicae", "Suahelici", "Suahelicum", "Suahelica", "Suahelicae", "Kiswahili", 
		"Suahelicus", "Suahelica", "Suahelicarum", "Settler Swahili", "KiSetla", "KiSettla", "Setla", "Settla", "Kitchen Swahili", "Kihindi", "Indian Swahili", "KiShamba", "Kishamba", "Field Swahili", "Kibabu", "Asian Swahili", "Kimanga", "Arab Swahili", "Kitvita", "Army Swahili"},
	scripts = {"Latn", "Arab"},
	family = "bnt",
	sort_key = {
		from = {"ng'", "^-"},
		to   = {"ngz"}} ,
}

m["ta"] = {
	canonicalName = "Tamulice",
	otherNames = {"Tamulica", "Tamulicae", "Tamulici", "Tamulicum", "Tamulica", "Tamulicae", "தமிழ்", 
		"Tamulicus", "Tamulica", "Tamulicarum", "Tamil"},
	scripts = {"Taml"},
	family = "dra",
	ancestors = {"oty"},
	translit_module = "ta-translit",
}

m["te"] = {
	canonicalName = "Teluguice",
	scripts = {"Telu"},
	family = "dra",
	translit_module = "te-translit",
}

m["tg"] = {
	canonicalName = "Tadzikice",
	otherNames = {"Tadzikica", "Tadzikicae", "Tadzikici", "Tadzikicum", "Tadzikica", "Tadzikicae", "Тоҷикӣ", 
		"Tadzikicus", "Tadzikica", "Tadzikicarum", "Tajik", "Tadjik", "Tadzhik", "Tajiki", "Tajik Persian"},
	scripts = {"Cyrl", "fa-Arab", "Latn"},
	family = "ira-wes",
	ancestors = {"fa"},
	translit_module = "tg-translit",
		sort_key = {
		from = {"Ё", "ё"},
		to   = {"Е" , "е"}} ,
	entry_name = {
		from = {ACUTE},
		to   = {}} ,
}

m["th"] = {
	canonicalName = "Siamense",
	otherNames = {"Siamensis", "Siamenses", "Siamenses", "Siamense", "Siamensia", "Siamensis", "ภาษาไทย", 
		"Siamensis", "Siamensi", "Siamensium", "Thai"},
	scripts = {"Thai"},
	family = "tai-swe",
	translit_module = "th-translit",
	entry_name = {
		from = { "-" },
		to = {}} ,
}

m["ti"] = {
	canonicalName = "Tigrinya",
	scripts = {"Ethi"},
	family = "sem-eth",
	translit_module = "Ethi-translit",
}

m["tk"] = {
	canonicalName = "Turcomannice",
	otherNames = {"Turcomannica", "Turcomannicae", "Turcomannici", "Turcomannicum", "Turcomannica", "Turcomannicae", "Türkmençe", 
		"Turcomannicus", "Turcomannica", "Turcomannicarum", "Tүркменче", "Türkmen dili", "تورکمن ﺗﻴﻠی"},
	scripts = {"Latn", "Cyrl"},
	family = "trk-ogz",
}

m["tl"] = {
	canonicalName = "Tagale",
	otherNames = {"Tagala", "Tagalae", "Tagali", "Tagalum", "Tagala", "Tagalae", "Wikang Tagalog", 
		"Tagalus", "Tagala", "Tagalarum"},
	scripts = {"Latn", "Tglg"},
	family = "phi",
}

m["tn"] = {
	canonicalName = "Tswana",
	otherNames = {"Setswana"},
	scripts = {"Latn"},
	family = "bnt",
}

m["to"] = {
	canonicalName = "Tongane",
	otherNames = {"Tongana", "Tonganae", "Tongani", "Tonganum", "Tongana", "Tonganae", "lea fakatonga", 
		"Tonganus", "Tongana", "Tonganarum"},
	scripts = {"Latn"},
	family = "poz-pol",
}

m["tr"] = {
	canonicalName = "Turcice",
	otherNames = {"Turcica", "Turcicae", "Turcici", "Turcicum", "Turcica", "Turcicae", "Türkçe", 
		"Turcicus", "Turcica", "Turcicarum"},
	scripts = {"Latn"},
	family = "trk-ogz",
	ancestors = {"ota"},
}

m["ts"] = {
	canonicalName = "Tsonga",
	scripts = {"Latn"},
	family = "bnt",
}

m["tt"] = {
	canonicalName = "Tatarice",
	otherNames = {"Tatarica", "Tataricae", "Tatarici", "Tataricum", "Tatarica", "Tataricae", "татарча / tatarça", 
		"Tataricus", "Tatarica", "Tataricarum"},
	scripts = {"Cyrl", "Latn", "Arab", "tt-Arab"},
	family = "trk-kip",
	translit_module = "tt-translit",
}

m["ty"] = {
	canonicalName = "Tahitiane",
	otherNames = {"Tahitiana", "Tahitianae", "Tahitiani", "Tahitianum", "Tahitiana", "Tahitianae", "reo Mā’ohi",
		"Tahitianus", "Tahitiana", "Tahitianarum"},
	scripts = {"Latn"},
	family = "poz-pol",
}

m["ug"] = {
	canonicalName = "Uyghur",
	otherNames = {"Uigur", "Uighur", "Uygur"},
	scripts = {"ug-Arab", "Latn", "Cyrl"},
	family = "trk",
	ancestors = {"chg"},
	translit_module = "ug-translit",
}

m["uk"] = {
	canonicalName = "Ucrainice",
	otherNames = {"Ucrainica", "Ucrainicae", "Ucrainici", "Ucrainicum", "Ucrainica", "Ucrainicae", "українська", 
		"Ucrainicus", "Ucrainica", "Ucrainicarum"},
	scripts = {"Cyrl"},
	family = "zle",
	translit_module = "uk-translit",
	entry_name = {
		from = {"Ѐ", "ѐ", "Ѝ", "ѝ", GRAVE, ACUTE},
		to   = {"Е", "е", "И", "и"}},
} 
m["ur"] = {
	canonicalName = "Urdu",
	otherNames = {"Urdu"},
	scripts = {"ur-Arab"},
	family = "inc",
	ancestors = {"psu"},
	entry_name = {
		from = {u(0x064B), u(0x064C), u(0x064D), u(0x064E), u(0x064F), u(0x0650), u(0x0651), u(0x0652)},
		to   = {}} ,
}

m["uz"] = {
	canonicalName = "Usbece",
	otherNames = {"Northern Uzbek", "Southern Uzbek"},
	scripts = {"Latn", "Cyrl", "fa-Arab"},
	family = "trk",
	ancestors = {"chg"},
}

m["ve"] = {
	canonicalName = "Venda",
	scripts = {"Latn"},
	family = "bnt",
}

-- otherNames is used for inflected forms: 1=nomsgf, 2=nomplf, 3=nomplm, 4=nomsgn, 5=nompln, 6=gensgf
m["vi"] = {
	canonicalName = "Vietnamice",
	otherNames = {"Vietnamica", "Vietnamicae", "Vietnamici", "Vietnamicum", "Vietnamica", "Vietnamicae", "tiếng Việt", 
		"Vietnamicus", "Vietnamica", "Vietnamicarum", "Annamese", "Annamite"},
	scripts = {"Latn", "Hani"},
	family = "mkh-vie",
	ancestors = {"mkh-mvi"},
}

m["vo"] = {
	canonicalName = "Volapük",
	scripts = {"Latn"},
	family = "art",
}

m["wa"] = {
	canonicalName = "Vallonice",
	otherNames = {"Vallonica", "Vallonicae", "Vallonici", "Vallonicum", "Vallonica", "Vallonicae", "walon", 
		"Vallonicus", "Vallonica", "Vallonicarum"},
	scripts = {"Latn"},
	family = "roa",
	ancestors = {"fro"},
	sort_key = {
		from = {"[áàâäå]", "[éèêë]", "[íìîï]", "[óòôö]", "[úùûü]", "[ýỳŷÿ]", "ç", "'"},
		to   = {"a"	  , "e"	 , "i"	 , "o"	 , "u"	 , "y"	 , "c"}} ,
}

m["wo"] = {
	canonicalName = "Wolof",
	otherNames = {"Gambian Wolof"}, -- the subsumed dialect 'wof'
	scripts = {"Latn", "Arab"},
	family = "alv-sng",
}

m["xh"] = {
	canonicalName = "Xhosa",
	scripts = {"Latn"},
	family = "bnt-ngu",
}

m["yi"] = {
	canonicalName = "Iudaeogermanice",
	otherNames = {"Iudaeogermanica", "Iudaeogermanicae", "Iudaeogermanici", "Iudaeogermanicum", "Iudaeogermanica", "Iudaeogermanicae", "יידיש", 
		"Iudaeogermanicus", "Iudaeogermanica", "Iudaeogermanicarum", "Jiddisch"},
	scripts = {"Hebr"},
	family = "gmw",
	ancestors = {"gmh"},
	translit_module = "yi-translit",
}

m["yo"] = {
	canonicalName = "Yoruba",
	scripts = {"Latn"},
	family = "alv-von",
}

m["za"] = {
	canonicalName = "Zhuang",
	scripts = {"Latn", "Hani"},
	family = "tai",
}

m["zh"] = {
	canonicalName = "Sinice",
	otherNames = {"Sinica", "Sinicae", "Sinici", "Sinicum", "Sinica", "Sinicae", "中文", 
		"Sinicus", "Sinica", "Sinicarum"},
	scripts = {"Hani"},
	family = "sit",
	ancestors = {"ltc"},
}

m["zu"] = {
	canonicalName = "Zuluane",
	otherNames = {"Zuluana", "Zuluanae", "Zuluani", "Zuluanum", "Zuluana", "Zuluanae", "isiZulu", 
		"Zuluanus", "Zuluana", "Zuluanarum"},
	scripts = {"Latn"},
	family = "bnt-ngu",
}

return m