မဝ်ဂျူ:languages/data/2

နူ ဝိက်ရှေန်နရဳ

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. For the corresponding extra data, see မဝ်ဂျူ:languages/data/2/extra.

Errors[ပလေဝ်ဒါန်]

The following errors were detected by Module:data consistency check: Lua ဗၠေတ်: not enough memory.

Required values[ပလေဝ်ဒါန်]

Every entry in the table must contain the following indexed fields:

1
The "canonical" name of the language. This is the name that is used in Wiktionary entries and category names.
2
The Wikidata item id (Q number) for the language. Can be specified as a number (a positive integer) or a string that starts with Q and ends with decimal digits. Set to nil if not known/present. This replaces the older wikipedia_article property, which can still be used to link to specific sections or language editions.

Optional values[ပလေဝ်ဒါန်]

3
The code for the family that the language belongs to. See Wiktionary:Families.
4
A list of script codes. See Wiktionary:Scripts. These represent all the scripts (writing systems) that this language uses in the real world, as well as the ones that Wiktionary uses. The scripts that are used most often on Wiktionary should be first in the list, as this will speed up script detection.
Many templates and modules detect the script of text in a particular language using the findBestScript function in Module:scripts. This function goes down the list of scripts and counts how many characters in the text belong to each script. If all the characters belong to one script, that script will be returned; otherwise, the script with the most characters will be returned. Thus, script detection will be faster if the most frequently used scripts are first in the list. If none of the characters match any of the listed scripts, then the None script is returned (even if the characters would match a script not listed). Translingual (mul) and Undetermined (und) have the special value "All", which means they are treated as having every script. This value should not be set for any other language codes.
Due to the ongoing problems with Lua memory limits, this should be given as a comma-separated list in a string (and not a table). This is then converted into a table when returned. For example: "Latn, Brai, Shaw, Dsrt".
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 Reconstruction 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 Reconstruction 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.
ancestors
A list of the language codes of the direct ancestors of this language. For example, the ancestor of English is listed as enm (Middle English); ang (Old English, the ancestor of Middle English), gem-pro (Proto-Germanic, the ancestor of Old English), and ine-pro (Proto-Indo-European, the ancestor of Proto-Germanic) are not listed.
For most languages, only one ancestor code should be given, but multiple ancestors can be listed for pidgins, creoles and mixed languages.
The ancestor language list should not be included if the language's direct ancestor is the proto-language of the family to which the language belongs. In such a case, if the family code has been provided, Module:languages will automatically add the proto-language as the language's ancestor. For example, Proto-Germanic (gem-pro) belongs to the Indo-European (ine) family, and its direct ancestor is Proto-Indo-European (ine-pro). Because Proto-Indo-European is the proto-language of the Indo-European languages, Proto-Germanic does not need an ancestors table; Proto-Indo-European will be automatically returned as its ancestor by the getAncestors function.
Due to the ongoing problems with Lua memory limits, this should be given as a comma-separated list in a string (and not a table). This is then converted into a table when returned. For example: "cr, fr".
wikimedia_codes
A list of 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.
Due to the ongoing problems with Lua memory limits, this should be given as a comma-separated list in a string (and not a table). This is then converted into a table when returned. For example: "en, simple".
wikipedia_article
The name of the Wikipedia article for the language. Should normally only be supplied if the Wikidata id cannot be used.
translit
See the Substitutions section for instructions on syntax.
Defines how a language should be transliterated, which will be automatically applied to any terms in scripts that do not have their isTransliterated value set to false in Module:scripts/data. This is used by transliterate in Module:languages.
link_tr
Set this to true to link the language's transliteration. For instance, Gothic has entries in Gothic script and entries for transliterations: 𐌷𐌻𐌰𐌹𐌱𐍃 (hlaibs).
display_text
See the Substitutions section for instructions on syntax.
Defines replacements to create the display form of the text, which is the form actually displayed on the page. This is occasionally necessary if there is a recurring issue of editors adding the wrong character, which is sometimes an issue when two or more characters are easy to confuse. For example, the palochka ӏ, used in Cyrillic in many Caucasian languages, is frequently entered as I, or even Latin l or I. As this is an ongoing issue (even among native speakers), the easiest way to solve the problem is to automatically correct the display form for those languages. This is used by makeDisplayText in Module:languages.
entry_name
See the Substitutions section for instructions on syntax.
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 (ōsos), as these are not used in the normal written form of these languages. This is used by makeEntryName in Module:languages.
sort_key
See the Substitutions section for instructions on syntax.
Defines replacements to create a category sort key from the page name. The purpose is to:
  1. Remove any characters that should be ignored in sorting.
  2. Replace characters with other characters, 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".
  3. Replace characters that should be sorted in different places with special characters that mimic that behaviour, (which is necessary due to MediaWiki software using the Unicode codepoint to determine sort order, which is often arbitrary). For instance, in Mongolian, the letter "ү" should be sorted after "у", but due to its codepoint it is sorted after the final letter "я" by default. As such, we can replace "ү" with "у" plus a character with a very high codepoint, which ensures that it is always sorted straight after. The data modules contain an in-built way to do this for the sake of convenience: with the above example, this would be done by using "у" .. p[1]. Another character could be inserted straight after by using "у" .. p[2] (and so on).
Note: the term is converted to lowercase before applying any substitutions, so you should not try to process capital letters (as it will not work). This is used by makeSortKey in Module:languages.
dotted_dotless_i
Set this to true for languages that distinguish between the dotted and dotless I (such as some Turkic languages).

Substitutions[ပလေဝ်ဒါန်]

translit, display_text, entry_name and sort_key all use the same syntax, which is designed to be as flexible as possible:
  • If they are a string, then this is treated as the name of a dedicated module which will be used to generate the output. For example, "sa-translit" refers to Module:sa-translit.
  • If they are a table, then it can contain two kinds of keys:
    1. The keys from, to, remove_diacritics and remove_exceptions relate to text substitution (see below).
    2. Script code keys are used to specify script-specific behaviour. These, in turn, can be strings (for dedicated modules) or tables (for text substitution). In addition, a value with the key 1 can be used as a fallback, which will be used if no specific behaviour is defined for that script.
Note: if script keys and text substitution keys are given in the same table, then the text substitution will be applied after the script-specific behaviour has completed. Ensure any fallback text substitutions are given as a subtable with key 1 if you want to avoid this. It is not possible to process the output of a script-specific module with another module, however: this should be done (for example) with a tail call in the first module.
Dedicated modules must take the arguments text, lang, sc, where text is the input text (usually the page name or input by the user), lang is the language code (not the language object), and sc is the script code (not the script object). For performance reasons, they should only be used when it is not possible to achieve the desired result via text substitution.
Text substitution replaces or removes certain characters (or sets of characters) for particular contexts. There are three ways to do this:
  1. Using the from and to keys.
  2. remove_diacritics (and optionally remove_exceptions).
  3. Both of the above (in that order).
from is paired with to, and both of them must be tables that 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 (as arguments to mw.ustring.gsub).
If the replacement is not present (or if it is false or nil), then any 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.
The tables can contain literal characters, or the patterns (a simplified form regular expressions) that are used by the standard Scribunto mw.ustring.gsub function. See the Scribunto reference manual for more information. Note that patterns make double substitutions a viable way to achieve more complex results. See the Latin sortkey for Mandarin (cmn) as an example of this.
remove_diacritics is a string which contains characters that will be removed after the text is decomposed. For instance, if remove_diacritics is a combining acute accent, all acute accents will be stripped, even if they are part of precomposed characters (such as á or ά). Despite the name, the characters to be stripped need not be diacritics: for instance, including an apostrophe would remove all apostrophes (though be careful with hyphens, which must be be escaped as %-).
Furthermore, if remove_diacritics is given, then it is possible to specify a remove_exceptions table, which prevents specific characters from having their diacritics stripped. For instance, if remove_diacritics is a combining diaeresis, but remove_exceptions contains "ё", then any instances of ё will remain unchanged. On the other hand, an instance of ӱ would still become у (unless "ӱ" is also added to remove_exceptions).

Formerly supported values[ပလေဝ်ဒါန်]

aliases, varieties, otherNames
This data is now located in the extra data modules; see Module:languages and Template:language extradata documentation.
family
Now 3.
scripts
Now 4.

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)
local OGONEK    = u(0x0328)
local DOUBLEINVBREVE = u(0x0361)

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

local Cyrl = {"Cyrl"}
local Latn = {"Latn"}
local LatnArab = {"Latn", "Arab"}

local m = {}

m["aa"] = {
	canonicalName = "အဖှာင်",
	otherNames = {"Qafar"},
	scripts = {"Latn"},
	family = "cus",
}

m["ab"] = {
	canonicalName = "အာပ်ဟန်",
	otherNames = {"Abkhaz", "Abkhazian", "Abxazo"},
	scripts = {"Cyrl", "Geor", "Latn"},
	family = "cau-abz",
	translit_module = "ab-translit",
	override_translit = true,
	entry_name = {
		from = {GRAVE, ACUTE},
		to   = {}} ,
}

m["ae"] = {
	"အဗါတ်သတေန်",
	29572,
	"ira-cen",
	scripts = {"Avst", "Gujr"},
	translit_module = "Avst-translit",
	wikipedia_article = "Avestan",
}

m["af"] = {
	canonicalName = "အေက်ဖရိကာန်",
	scripts = {"Latn", "Arab"},
	family = "gmw",
	ancestors = {"nl"},
	sort_key = {
		from = {"[äáâà]", "[ëéêè]", "[ïíîì]", "[öóôò]", "[üúûù]", "[ÿýŷỳ]", "^-", "'"},
		to   = {"a"	 , "e"	, "i"	, "o"	, "u"  , "y" }} ,
	wikipedia_article = "Afrikaans",
}

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

m["am"] = {
	canonicalName = "အာန်ဟာရိစ်",
	otherNames = {"Amharic"},
	scripts = {"Ethi"},
	family = "sem-eth",
	translit_module = "Ethi-translit",
	wikipedia_article = "Amharic",
}

m["an"] = {
	canonicalName = "အာဒါဂေန်",
	otherNames = {"Aragonese"},
	scripts = {"Latn"},
	family = "roa",
	ancestors = {"ine-pro", "itc-pro", "itc-ola", "la", "roa-oan"},
}

m["ar"] = {
	canonicalName = "အာရဗဳ",
	otherNames = {"Modern Standard Arabic", "Standard Arabic", "Literary Arabic", "Classical Arabic", "Arabic", "အာရက်လ်"},
	scripts = {"Arab", "Brai"},
	family = "sem-arb",
	-- alif waṣl to alif, remove diacritics
	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",
	wikipedia_article = "Arabic",
	ancestors = {"sem-pro"},
}

m["as"] = {
	canonicalName = "အိသ်ဇြာံမဳ",
	otherNames ={"Assamese"},
	scripts = {"Beng"},
	family = "inc",
	ancestors = {"inc-mgd"},
	translit_module = "as-translit",
}

m["av"] = {
	"အာဗာ",
	"Q29561",
	"cau-nec",
	aliases = {"Avaric"},
	scripts = Cyrl,
	ancestors = {"oav"},
	translit_module = "translit-redirect",
	override_translit = true,
	entry_name = {
		from = {GRAVE, ACUTE},
		to   = {}} ,
}


m["ay"] = {
	canonicalName = "အိုင်မာရ",
	otherNames = {"Aymara", "Southern Aymara", "Central Aymara"},
	scripts = {"Latn"},
	family = "sai-aym",
}

m["az"] = {
	"အာက်သေတ်ဗါဲဇြေနဳ",
	9292,
	"trk-ogz",
	{"Latn", "Cyrl", "fa-Arab"},
	ancestors = {"trk-oat"},
	dotted_dotless_i = true,
}

m["ba"] = {
	canonicalName = "ဗေတ်ခဳ",
	otherNames = {"Bashkir"},
	scripts = {"Cyrl"},
	family = "trk-kip",
	translit_module = "ba-translit",
	override_translit = true,
}

m["be"] = {
	canonicalName = "ဗါလာရုဇ်",
	otherNames = {"Belarusian", "Belorussian", "Belarusan", "Bielorussian", "Byelorussian", "Belarussian", "White Russian"},
	scripts = {"Cyrl"},
	family = "zle",
	ancestors = {"orv"},
	translit_module = "be-translit",
	sort_key = {
		from = {"Ё", "ё"},
		to   = {"Е" , "е"}},
	entry_name = {
		from = {"Ѐ", "ѐ", GRAVE, ACUTE},
		to   = {"Е", "е"}},
}

m["bg"] = {
	canonicalName = "ဗူလ်ဂရဳယာန်",
	otherNames = {"Bulgarian"},
	scripts = {"Cyrl"},
	family = "zls",
	translit_module = "bg-translit",
	entry_name = {
		from = {"Ѐ", "ѐ", "Ѝ", "ѝ", GRAVE, ACUTE},
		to   = {"Е", "е", "И", "и"}},
}

m["bh"] = {
	canonicalName = "ဘဳဟာရဳ",
	otherNames = {"Bihari"},
	scripts = {"Deva"},
	family = "inc",
	ancestors = {"inc-mgd"},
	wikipedia_article = "ဘာသာဘဳဟာရဳ",
}

m["bi"] = {
	canonicalName = "ဗဳသလာမာ",
	otherNames = {"Bislama"},
	scripts = {"Latn"},
	family = "crp",
	ancestors = {"ine-pro", "gem-pro", "gmw-pro", "ang", "enm", "en-ear", "en"},
	wikipedia_article = "Bislama",
}

m["bm"] = {
	canonicalName = "ဗီုဗရာ",
	otherNames = {"Bamanankan"},
	scripts = {"Latn"},
	family = "dmn",
}

m["bn"] = {
	canonicalName = "ဘင်္ဂါလဳ",
	otherNames = {"Bangla", "Bengali"},
	scripts = {"Beng"},
	family = "inc",
	ancestors = {"inc-mgd"},
	translit_module = "bn-translit",
}

m["bo"] = {
	canonicalName = "တဳဗဝ်",
	otherNames = {"Tibetan", "Ü", "Dbus", "Lhasa", "Lhasa Tibetan", "Amdo Tibetan", "Amdo", "Panang", "Khams", "Khams Tibetan", "Khamba", "Tseku", "Dolpo", "Humla", "Limi", "Lhomi", "Shing Saapa", "Mugom", "Mugu", "Nubri", "Walungge", "Gola", "Thudam", "Lowa", "Loke", "Mustang", "Tichurong", "တိဗက်"},
	scripts = {"Tibt"},
	family = "tbq",
	ancestors = {"xct"},
	translit_module = "bo-translit",
	override_translit = true,
	wikipedia_article = "Standard Tibetan",		-- may need verification
}

m["br"] = {
	canonicalName = "ဗရဳတေန်",
	otherNames = {"Breton"},
	scripts = {"Latn"},
	family = "cel-bry",
	ancestors = {"xbm"},
}

m["ca"] = {
	canonicalName = "ကတလာန်",
	otherNames = {"Valencian", "Catalan"},
	scripts = {"Latn"},
	family = "roa",
	ancestors = {"roa-oca"},
	sort_key = {
		from = {"à", "[èé]", "[íï]", "[òó]", "[úü]", "ç", "l·l"},
		to   = {"a", "e"   , "i"   , "o"   , "u"   , "c", "ll" }} ,
}

m["ce"] = {
	canonicalName = "ချက်ခ်ချေင်",
	otherNames = {"Chechen"},
	scripts = {"Cyrl", "Latn", "Arab"},
	family = "cau-nkh",
	translit_module = "translit-redirect",
	override_translit = true,
	ancestors = {"ccn-pro", "cau-nec-pro", "cau-nkh-pro"},
	entry_name = {
		from = {MACRON},
		to   = {}},
}

m["ch"] = {
	canonicalName = "ချာမဝ်ရဝ်",
	otherNames = {"Chamorro", "Chamoru"},
	scripts = {"Latn"},
	family = "poz-sus",
}

m["co"] = {
	canonicalName = "ခဝ်သဳကာန်",
	otherNames = {"Corsican", "Corsu"},
	scripts = {"Latn"},
	family = "roa",
}

m["cr"] = {
	canonicalName = "ခရေဝ်",
	scripts = {"Cree", "Cans", "Latn"},
	family = "alg",
	translit_module = "cr-translit",
}

m["cs"] = {
	canonicalName = "ချက်ခ်",
	otherNames = {"Czech"},
	scripts = {"Latn"},
	family = "zlw",
	ancestors = {"zlw-ocs", "sla-pro"},
	sort_key = {
		from = {"á", "é", "í", "ó", "[úů]", "ý"},
		to   = {"a", "e", "i", "o", "u"   , "y"}} ,
}

m["cu"] = {
	"ခရေတ်သလာဗဝ်နေတ်တြေံ",
	"Q35499",
	"zls",
	aliases = {"Old Church Slavic"},
	scripts = {"Cyrs", "Glag"},
	translit_module = "Cyrs-Glag-translit",
	ancestors = {"ine-pro", "ine-bsl-pro", "sla-pro"},
	entry_name = {
		from = {u(0x0484)}, -- kamora
		to   = {}},
	sort_key = {
		from = {"оу", "є"},
		to   = {"у" , "е"}} ,
}

m["cv"] = {
	"ချူဝါတ်",
	"Q33348",
	"trk-ogr",
	scripts = Cyrl,
	ancestors = {"xbo"},
	translit_module = "cv-translit",
	sort_key = {
		from = {"ӑ", "ё", "ӗ", "ҫ", "ӳ"},
		to   = {
			"а" .. u(0xF000),
			"е" .. u(0xF000),
			"е" .. u(0xF001),
			"с" .. u(0xF000),
			"у" .. u(0xF000)
			}
		},
	override_translit = true,
}

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

m["da"] = {
	canonicalName = "ဒိန်နေတ်",
	otherNames ={"Danish"},
	scripts = {"Latn"},
	family = "gmq",
	ancestors = {"gmq-oda"},
}

m["de"] = {
	canonicalName = "ဂျာမာန်",
	otherNames = {"High German", "New High German", "Deutsch", "German", "ဂျာမနဳ"},
	scripts = {"Latn", "Latf"},
	family = "gmw",
	ancestors = {"gmh"},
	sort_key = {
		from = {"[äàáâå]", "[ëèéê]", "[ïìíî]", "[öòóô]", "[üùúû]", "ß" },
		to   = {"a"	  , "e"	 , "i"	 , "o"	 , "u"	 , "ss"}} ,
}

m["dv"] = {
	canonicalName = "ဒိဝေဟဳ",
	otherNames = {"Dhivehi", "Divehi", "Mahal", "Mahl", "Maldivian"},
	scripts = {"Thaa"},
	family = "inc",
	ancestors = {"pmh"},	-- or Helu?
	translit_module = "dv-translit",
	override_translit = true,
	wikipedia_article = "ဘာသာမောဝ်ဒိုက်",
}

m["dz"] = {
	canonicalName = "သောင်ခါ",
	otherNames = {"Dzongkha"},
	scripts = {"Tibt"},
	family = "tbq",
	ancestors = {"xct"},
	translit_module = "bo-translit",
	override_translit = true,
	wikipedia_article = "Dzongkha",
}

m["ee"] = {
	canonicalName = "အဳဝါ",
	otherNames = {"Ewe"},
	scripts = {"Latn"},
	family = "alv-von",
}

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

m["en"] = {
	canonicalName = "အင်္ဂလိက်",
	otherNames = {"English", "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 of subsumed dialects which once had codes
	scripts = {"Latn", "Brai", "Shaw", "Dsrt"}, -- entries in Shaw or Dsrt might require prior discussion
	family = "gmw",
	ancestors = {"enm"},
	wikipedia_article = "ဘာသာအင်္ဂလိက်",
	sort_key = {
		from = {"[äàáâåā]", "[ëèéêē]", "[ïìíîī]", "[öòóôō]", "[üùúûū]", "æ" , "œ" , "[çč]", "ñ", "'"},
		to   = {"a"       , "e"      , "i"      , "o"      , "u"      , "ae", "oe", "c"   , "n"}},
	wikimedia_codes = {"en", "simple"},
	standardChars = "A-Za-z0-9" .. PUNCTUATION .. u(0x2800) .. "-" .. u(0x28FF)
}

m["eo"] = {
	canonicalName = "အေက်သပရေန်တဝ်",
	otherNames = {"Esperanto"},
	scripts = {"Latn"},
	family = "art",
	sort_key = {
		from = {"[áà]", "[éè]", "[íì]", "[óò]", "[úù]", "[ĉ]", "[ĝ]", "[ĥ]", "[ĵ]", "[ŝ]", "[ŭ]"},
		to   = {"a"	   , "e"  , "i"  , "o"  , "u", "cĉ", "gĉ", "hĉ", "jĉ", "sĉ", "uĉ"}} ,
	wikipedia_article = "Esperanto",
}

m["es"] = {
	"သပုင်",
	1321,
	"roa-ibe",
	{"Latn", "Brai"},
	ancestors = {"ine-pro", "itc-pro", "itc-ola", "la", "osp"},
	sort_key = {
		from = {"á", "é", "í", "ó", "[úü]", "ç", "ñ"},
		to   = {"a", "e", "i", "o", "u"   , "c", "n"}},
	standardChars = "A-VXYZa-vxyz0-9ÁáÉéÍíÓóÚúÑñ¿¡" .. PUNCTUATION,
}

m["et"] = {
	canonicalName = "အေက်သတဝ်နဳယာန်",
	otherNames = {"Estonian"},
	scripts = {"Latn"},
	family = "urj-fin",
}

m["eu"] = {
	canonicalName = "ဗက်ခ်",
	otherNames = {"Basque", "Euskara"},
	scripts = {"Latn"},
	family = "euq",
}

m["fa"] = {
	canonicalName = "ပါရှေန်",
	otherNames = {"ပါရှာ", "ဖာသဳ", "ဖာစဳ", "Persian", "Farsi", "New Persian", "Modern Persian", "Western Persian", "Iranian Persian", "Eastern Persian", "Dari", "Aimaq", "Aimak", "Aymaq", "Eimak"},
	scripts = {"fa-Arab"},
	family = "ira-wes",
	ancestors = {"pal", "ira-pro", "iir-pro", "ine-pro"},
	entry_name = {
		from = {u(0x064E), u(0x064F), u(0x0650), u(0x0651), u(0x0652)},
		to   = {}} ,
}

m["ff"] = {
	canonicalName = "ဖှောတ်လာ",
	otherNames = {"Fula", "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"] = {
	"ဖေန်လာန်",
	"Q1412",
	"urj-fin",
	aliases = {"Suomi"},
	scripts = Latn,
	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 = "ဖရဳဂျိ",
	otherNames = {"Fijian"},
	scripts = {"Latn"},
	family = "poz-occ",
}

m["fo"] = {
	canonicalName = "ဖာရဝ်သဳ",
	otherNames = {"Faroese"},
	scripts = {"Latn"},
	family = "gmq",
	ancestors = {"non"},
}

m["fr"] = {
	canonicalName = "ပြင်သေတ်",
	otherNames = {"French", "Modern French"},
	scripts = {"Latn", "Brai"},
	family = "roa-oil",
	ancestors = {"frm", "la"},
	sort_key = {
		from = {"[áàâä]", "[éèêë]", "[íìîï]", "[óòôö]", "[úùûü]", "[ýỳŷÿ]", "ç", "æ" , "œ" , "'"},
		to   = {"a"	 , "e"	 , "i"	 , "o"	 , "u"	 , "y"	 , "c", "ae", "oe"}},
	standardChars = "A-Za-z0-9ÀÂÇÉÈÊËÎÏÔŒÛÙÜàâçéèêëîïôœûùü«»" .. PUNCTUATION
}

m["fy"] = {
	canonicalName = "ဖရေဝ်သဳယာန်လက္ကရဴ",
	otherNames = {"West Frisian", "Western Frisian", "Frisian"},
	scripts = {"Latn"},
	family = "gmw-fri",
	ancestors = {"ofs"},
}

m["ga"] = {
	canonicalName = "အာဲယျာလာန်",
	otherNames = {"Irish", "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 = "သကတ်ဂဴလိစ်",
	otherNames = {"Scottish Gaelic", "Gàidhlig", "Highland Gaelic", "Scots Gaelic", "Scottish"},
	scripts = {"Latn"},
	family = "cel-gae",
	ancestors = {"mga"},
	sort_key = {
		from = {"[áà]", "[éè]", "[íì]", "[óò]", "[úù]", "[ýỳ]"},
		to   = {"a"   , "e"   , "i"   , "o"   , "u"   , "y"   }} ,
	wikipedia_article = "Scottish Gaelic",
}

m["gl"] = {
	canonicalName = "ဂလဳသဳယာန်",
	otherNames = {"Galician"},
	scripts = {"Latn"},
	family = "roa",
	ancestors = {"ine-pro", "itc-pro", "inc-pro", "itc-ola", "la", "roa-opt"},
	sort_key = {
		from = {"á", "é", "í", "ó", "ú"},
		to   = {"a", "e", "i", "o", "u"}} ,
}

m["gn"] = {
	canonicalName = "ဂူရာန်နဳ",
	otherNames = {"Guaraní"},
	scripts = {"Latn"},
	family = "tup-gua",
	wikipedia_article = "ဘာသာဂူရာန်နဳ",
}

m["gu"] = {
	canonicalName = "ဂုဂျာရတဳ",
	otherNames = {"Gujarati"},
	scripts = {"Gujr"},
	family = "inc",
	ancestors = {"inc-ogu"},
	translit_module = "gu-translit",
}

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

m["ha"] = {
	canonicalName = "ဟဴသာ",
	otherNames = {"Hausa"},
	scripts = {"Latn", "Arab"},
	family = "cdc-wst",
    sort_key = {
		from = {"ɓ",   "ɗ",   "ƙ",  "'y", "ƴ",  "'" },
		to   = {"b~" , "d~"	, "k~", "y~", "y~", ""  }},
    entry_name = {
		from = {"R̃", "r̃", "À", "à", "È", "è", "Ì", "ì", "Ò", "ò", "Ù", "ù", "Â", "â", "Ê", "ê", "Î", "î", "Ô", "ô", "Û", "û", "Ā", "ā", "Ē", "ē", "Ī", "ī", "Ō", "ō", "Ū", "ū", "Á", "á", "É", "é", "Í", "í", "Ó", "ó", "Ú", "ú", "Ā̀", "ā̀", "Ḕ", "ḕ", "Ī̀", "ī̀", "Ṑ", "ṑ", "Ū̀", "ū̀", GRAVE, ACUTE},
		to   = {"R", "r", "A", "a", "E", "e", "I", "i", "O", "o", "U", "u", "A", "a", "E", "e", "I", "i", "O", "o", "U", "u", "A", "a", "E", "e", "I", "i", "O", "o", "U", "u", "A", "a", "E", "e", "I", "i", "O", "o", "U", "u", "A", "a", "E", "e", "I", "i", "O", "o", "U", "u"}},
}

m["he"] = {
	canonicalName = "ဟဳဘရဝ်",
	otherNames = {"Hebrew", "Ivrit"},
	scripts = {"Hebr", "Phnx", "Brai"},
	family = "sem-can",
	ancestors = {"afa-pro", "sem-pro", "sem-wes-pro", "hbo", "he-mis", "he-med"},
	translit_module = "he-translit",
	entry_name = {
		from = {"[" .. u(0x0591) .. "-" .. u(0x05BD) .. u(0x05BF) .. "-" .. u(0x05C5) .. u(0x05C7) .. "]"},
		to   = {}} ,
}

m["hi"] = {
	canonicalName = "ဟိန္ဒဳ",
	otherNames = {"ဟိန္ဒဳ", "Hindi", "Braj", "Brij Bhasha", "Braj Bhasha", "Braj Bhāshā", "Braj Bhakha", "Dehaati Zabaan"},
	scripts = {"Deva", "Guru"}, -- Guru for the subsumed variety Braj
	family = "inc-hnd",
	ancestors = {"inc-ohi"},
	translit_module = "hi-translit",
	wikipedia_article = "Hindi",
}

m["ho"] = {
	canonicalName = "ဟဳရဳမိုတု",
	otherNames = {"Hiri Motu", "Pidgin Motu", "Police Motu"},
	scripts = {"Latn"},
	family = "crp",
	ancestors = {"meu"},
	wikipedia_article = "Hiri Motu",
}

m["ht"] = {
	"ဟေဲယှေန် ခရေဝ်အဝ်လ်",
	33491,
	"crp",
	Latn,
	ancestors = {"fr"},
}

m["hu"] = {
	canonicalName = "ဟာန်ဂါရေဝ်",
	otherNames = {"Hungarian", "Magyar"},
	scripts = {"Latn", "Hung"},
	family = "urj-ugr",
	ancestors = {"urj-pro", "urj-ugr-pro", "ohu"},
	sort_key = {
		from = {"é", "í", "ó", "ú", "ő", "ö", "ü", "á"},
		to   = {"e", "i", "o", "u", "o", "o", "u", "a"}} ,
}

m["hy"] = {
	canonicalName = "အာမေနဳယျာ",
	otherNames = {"Armenian", "Modern Armenian", "Eastern Armenian", "Western Armenian", "အမေရိကာန်ဗၟံက်", "အမေရိကာန်ပလိုတ်", "အမေရိကာန်အခေတ်တၟိ"},
	scripts = {"Armn", "Brai"},
	family = "hyx",
	ancestors = {"axm"},
	translit_module = "Armn-translit",
	override_translit = true,
	sort_key = {
		from = {"ու", "և", "եւ"},
		to   = {"ւ", "եվ", "եվ"}},
	entry_name = {
		from = {"՞", "՜", "՛", "՟", "և", "<sup>յ</sup>", "<sup>ի</sup>"},
		to   = {"", "", "", "", "եւ", "յ", "ի"}} ,
}

m["hz"] = {
	canonicalName = "ဟဳရဲရို",
	otherNames = {"Herero"},
	scripts = {"Latn"},
	family = "bnt",
}

m["ia"] = {
	canonicalName = "အေန်တာလိင်ဂဝ်",
	otherNames = {"Interlingua"},
	scripts = {"Latn"},
	family = "art",
	wikipedia_article = "Interlingua",
}

m["id"] = {
	canonicalName = "အိန်ဒဝ်နဳသဳယျာ",
	otherNames = {"Indonesian"},
	scripts = {"Latn"},
	family = "poz-mly",
	ancestors = {"map-pro", "poz-pro", "poz-sus-pro", "poz-msa-pro", "poz-mcm-pro", "poz-mly-pro", "ms-old", "ms-cla", "ms"},
}

m["ie"] = {
	canonicalName = "အေန်တာလိင်ဂဝေ",
	otherNames = {"Interlingue", "Occidental"},
	scripts = {"Latn"},
	family = "art",
	wikipedia_article = "Occidental language",
}

m["ig"] = {
	canonicalName = "အေတ်ဗါဝ်",
	otherNames = {"Igbo", "အစ္ဂဘို"},
	scripts = {"Latn"},
	family = "nic-bco",
}

m["ii"] = {
	canonicalName = "သေဲဆိုန်ယဳ",
	otherNames = {"Sichuan Yi", "Nuosu", "Nosu", "Northern Yi", "Liangshan Yi"},
	scripts = {"Yiii"},
	family = "tbq-lol",
	wikipedia_article = "Nuosu language",
	translit_module = "ii-translit",
	override_translit = true,
}

m["ik"] = {
	canonicalName = "အဳနုဗဳယာတ်",
	otherNames = {"Inupiak", "Inupiaq", "Iñupiaq", "Inupiatun"},
	scripts = {"Latn"},
	family = "esx-inu",
	wikipedia_article = "Inupiaq",
}

m["io"] = {
	canonicalName = "ဣဒဝ်",
	otherNames = {"Ido"},
	scripts = {"Latn"},
	family = "art",
}

m["is"] = {
	canonicalName = "အာက်သလာန်",
	otherNames = {"Icelandic", "အာက်သလာန်"},
	scripts = {"Latn"},
	family = "gmq",
	ancestors = {"non", "gem-pro", "ine-pro"},
	sort_key = {
		from = {"ð", "ö", "ó", "æ", "á", "í", "ú"},
		to   = {"o", "o", "o", "ae", "a", "i", "u"}} ,
}

m["it"] = {
	canonicalName = "အဳတခ်လဳ",
	otherNames = {"Italian"},
	scripts = {"Latn"},
	family = "roa",
	sort_key = {
		from = {"[àáâäå]", "[èéêë]", "[ìíîï]", "[òóôö]", "[ùúûü]"},
		to   = {"a"	  , "e"	 , "i"	 , "o"	 , "u"	 }} ,
}

m["iu"] = {
	canonicalName = "ဣနုက်တိတုတ်",
	otherNames = {"Inuktitut", "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",
	override_translit = true,
	wikipedia_article = "Inuktitut",
}

m["ja"] = {
	canonicalName = "ဂျပါန်",
	otherNames = {"Japanese", "Modern Japanese", "Nipponese", "Nihongo"},
	scripts = {"Jpan", "Latn", "Hira", "Brai"},
	family = "jpx",
	ancestors = {"ojp"},
	--[[
	sort_key = {
		from = {"[ぁァア]", "[ぃィイ]", "[ぅゔゥウヴ]", "[ぇェエ]", "[ぉォオ]", "[がゕカガヵ]", "[ぎキギ]", "[ぐクグㇰ]", "[げゖケゲヶ]", "[ごコゴ]", "[ざサザ]", "[じシジㇱ]", "[ずスズㇲ]", "[ぜセゼ]", "[ぞソゾ]", "[だタダ]", "[ぢチヂ]", "[っづッツヅ]", "[でテデ]", "[どトドㇳ]", "ナ", "ニ", "[ヌㇴ]", "ネ", "ノ", "[ばぱハバパㇵ]", "[びぴヒビピㇶ]", "[ぶぷフブプㇷ]", "[べぺヘベペㇸ]", "[ぼぽホボポㇹ]", "マ", "ミ", "[ムㇺ]", "メ", "モ", "[ゃャヤ]", "[ゅュユ]", "[ょョヨ]", "[ラㇻ]", "[リㇼ]", "[ルㇽ]", "[レㇾ]", "[ロㇿ]", "[ゎヮワヷ]", "[ヰヸ]", "[ヱヹ]", "[ヲヺ]", "ン", "[゙゚゛゜ゝゞ・ヽヾ]", "𛀀", "1", "2", "3", "4", "5", "6", "7", "8", "9", "0"},
		to   = {"あ", "い", "う", "え", "お", "か", "き", "く", "け", "こ", "さ", "し", "す", "せ", "そ", "た", "ち", "つ", "て", "と", "な", "に", "ぬ", "ね", "の", "は", "ひ", "ふ", "へ", "ほ", "ま", "み", "む", "め", "も", "や", "ゆ", "よ", "ら", "り", "る", "れ", "ろ", "わ", "ゐ", "ゑ", "を", "ん", "", "え", "い", "に", "み", "よ", "ご", "ろ", "な", "は", "き", "れ"}},
	]]
}

m["jv"] = {
	canonicalName = "ဂျာဗာ",
	otherNames = {"Javanese"},
	scripts = {"Latn", "Java"},
	family = "poz-sus",
	translit_module = "jv-translit",
	ancestors = {"kaw"},
	link_tr = true,
}

m["ka"] = {
	canonicalName = "ဂျဝ်ဂျဳယျာ",
	otherNames = {"Georgian", "Kartvelian", "Judeo-Georgian", "Kivruli", "Gruzinic"},
	scripts = {"Geor", "Geok", "Hebr"}, -- Hebr is used to write Judeo-Georgian
	family = "ccs-gzn",
	ancestors = {"oge"},
	translit_module = "Geor-translit",
	override_translit = true,
	entry_name = {
		from = {"̂"},
		to   = {""}},
}

m["kg"] = {
	canonicalName = "ခါမ်ဂဝ်",
	otherNames = {"Kongo", "Kikongo", "Koongo", "Laari", "San Salvador Kongo", "Yombe"},
	scripts = {"Latn"},
	family = "bnt",
}

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

m["kj"] = {
	canonicalName = "ကောန်ယာမာ",
	otherNames = {"Kwanyama", "Kuanyama", "Oshikwanyama"},
	scripts = {"Latn"},
	family = "bnt",
	wikipedia_article = "Kwanyama dialect",
}

m["kk"] = {
	canonicalName = "ကဇက်",
	scripts = {"Kazakh", "Cyrl", "Latn", "Arab", "kk-Arab"},
	family = "trk-kip",
	ancestors = {"trk-pro"},
	translit_module = "kk-translit",
	override_translit = true,
}

m["kl"] = {
	canonicalName = "ဂရိန်လာန်",
	otherNames = {"Greenlandic", "Kalaallisut"},
	scripts = {"Latn"},
	family = "esx-inu",
}

m["km"] = {
	"ခမေန်",
	"Q9205",
	family = "mkh-kmr",
	aliases = {"Khmer", "Cambodian"},
	scripts = {"Khmr"},
	ancestors = {"aav-pro", "mkh-pro", "mkh-kmr-pro", "okz", "xhm"},
	translit_module = "km-translit",
}


m["kn"] = {
	canonicalName = "ကာန်နဒါ",
	otherNames = {"Kannada", "ကန္နာဒါ"},
	scripts = {"Knda"},
	family = "dra",
	translit_module = "kn-translit",
	wikipedia_article = "Kannada",
	ancestors = {"dra-mkn"},
}

m["ko"] = {
	"ကိုဝ်ရဳယျာ",
	"Q9176",
	"qfa-kor",
	aliases = {"Korean", "Modern Korean"},
	scripts = {"Kore", "Brai"},
	ancestors = {"ko-ear"},
	-- 20210122 trial idea: strip parenthesized hanja from entry link
	-- Hani regex is a reasonable subset of Hani from [[Module:scripts/data]],
	-- last updated on 20210203.
	entry_name = {
		from = {
			"%([一-鿿㐀-䶿𠀀-𮯯"..u(0x2F800).."-𯨟𰀀-𱍏﨎﨏﨑﨓﨔﨟﨡﨣﨤﨧﨨﨩]+%)",
		},
		to   = {
			"",
		}},
	translit_module = "ko-translit",
}

m["kr"] = {
	canonicalName = "ကနူရဳ",
	otherNames = {"Kanuri", "Kanembu", "Bilma Kanuri", "Central Kanuri", "Manga Kanuri", "Tumari Kanuri"},
	scripts = {"Latn", "Arab"},
	family = "ssa-sah",
	sort_key = {
		from = {"ny", "ǝ", "sh"},
		to   = {"n~", "e~", "s~"}} , -- the sortkey and entry_name are only for standard Kanuri; when dialectal entries get added, someone will have to work out how the dialects should be represented orthographically
	entry_name = {
		from = {"À", "à", "È", "è", "Ǝ̀", "ǝ̀", "Ì", "ì", "Ò", "ò", "Ù", "ù", "Â", "â", "Ê", "ê", "Ǝ̂", "ǝ̂", "Î", "î", "Ô", "ô", "Û", "û", "Ă", "ă", "Ĕ", "ĕ", "Ǝ̆", "ǝ̆", "Ĭ", "ĭ", "Ŏ", "ŏ", "Ŭ", "ŭ", "Á", "á", "É", "é", "Ǝ́", "ǝ́", "Í", "í", "Ó", "ó", "Ú", "ú", GRAVE, ACUTE},
		to   = {"A", "a", "E", "e", "Ǝ", "ǝ", "I", "i", "O", "o", "U", "u", "A", "a", "E", "e", "Ǝ", "ǝ", "I", "i", "O", "o", "U", "u", "A", "a", "E", "e", "Ǝ", "ǝ", "I", "i", "O", "o", "U", "u", "A", "a", "E", "e", "Ǝ", "ǝ", "I", "i", "O", "o", "U", "u"}},
}

m["ks"] = {
	"ကာဒ်ရှ်မဳယျာ",
	33552,
	"inc-dar",
	{"ks-Arab", "Deva", "Shrd", "Latn"},
	translit_module = "translit-redirect",
	ancestors = {"sa"},
}

m["ku"] = {
	canonicalName = "ကာဒဳ",
	otherNames = {"Kurdish"},
	scripts = {"Latn", "ku-Arab", "Armn", "Cyrl"},
	family = "ira-wes",
	wikipedia_article = "Kurdish languages",
}

-- "kv" IS TREATED AS "koi", "kpv", SEE WT:LT

m["kw"] = {
	canonicalName = "ခမ်နေတ်",
	otherNames = {"Cornish"},
	scripts = {"Latn"},
	family = "cel-bry",
	ancestors = {"ine-pro", "cel-pro", "cel-bry-pro", "oco", "cnx"},
}

m["ky"] = {
	canonicalName = "ကာဇေတ်",
	otherNames = {"Kyrgyz", "Kirghiz", "Kirgiz"},
	scripts = {"Cyrl", "Latn", "Arab"},
	family = "trk-kip",
	translit_module = "ky-translit",
	override_translit = true,
	ancestors = {"trk-pro", "qwm"},
}

m["la"] = {
	canonicalName =  "လပ်တေန်",
	otherNames = {"Latin"},
	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"}},
	wikipedia_article = "Latin",
	standardChars = "A-Za-zÆ挜Ā-ăĒ-ĕĪ-ĭŌ-ŏŪ-ŭȲȳ" .. MACRON .. BREVE .. PUNCTUATION
}

m["lb"] = {
	canonicalName = "လူဇေန်ဘာဂျ်",
	otherNames = {"Luxembourgish"},
	scripts = {"Latn"},
	family = "gmw",
	ancestors = {"gmh"},
	wikipedia_article = "Luxembourgish",
}

m["lg"] = {
	canonicalName = "လုဂန်ဒါ",
	otherNames = {"ဂန်ဒါ", "Luganda", "Ganda", "Oluganda"},
	scripts = {"Latn"},
	family = "bnt",
	entry_name = {
		from = {"á", "Á", "é", "É", "í", "Í", "ó", "Ó", "ú", "Ú", "ń", "Ń", "ḿ", "Ḿ", "â", "Â", "ê", "Ê", "î", "Î", "ô", "Ô", "û", "Û" },
		to   = {"a", "A", "e", "E", "i", "I", "o", "O", "u", "U", "n", "N", "m", "M", "a", "A", "e", "E", "i", "I", "o", "O", "u", "U",}},
	sort_key = {
		from = {"ŋ"},
		to   = {"n"}} ,
	wikipedia_article = "Luganda",
}

m["li"] = {
	canonicalName = "လိမ်ဗူရ်ဂိသ်",
	otherNames = {"Limburgish", "Limburgan", "Limburgian", "Limburgic"},
	scripts = {"Latn"},
	family = "gmw",
	ancestors = {"dum"},
}

m["ln"] = {
	canonicalName = "လေန်ဂါလာ",
	otherNames = {"Lingala", "Ngala"},
	scripts = {"Latn"},
	family = "bnt",
	wikipedia_article = "Lingala",
}

m["lo"] = {
	canonicalName = "သေံလဴ",
	otherNames = {"သေံလဴ", "Lao", "Laotian"},
	scripts = {"Laoo"},
	family = "tai-swe",
	translit_module = "lo-translit",
	sort_key = {
		from = {"ຼ", "ຽ", "ໜ", "ໝ", "([ເແໂໃໄ])([ກ-ຮ])"},
		to   = {"ລ", "ຍ", "ຫນ", "ຫມ", "%2%1"}},
	ancestors = {"tai-pro"},
}

m["lt"] = {
	canonicalName = "လေတ်တူယဵုနဳယျာ",
	otherNames = {"Lithuanian", "လေတ်တူယဵုနဳယျာ"},
	scripts = {"Latn"},
	family = "bat",
	ancestors = {"ine-pro", "ine-bsl-pro", "bat-pro", "olt"},
	entry_name = {
		from = {"[áãà]", "[ÁÃÀ]", "[éẽè]", "[ÉẼÈ]", "[íĩì]", "[ÍĨÌ]", "[ýỹ]", "[ÝỸ]", "ñ", "[óõò]", "[ÓÕÒ]", "[úũù]", "[ÚŨÙ]", ACUTE, GRAVE, TILDE},
		to   = {"a",       "A",     "e",     "E",     "i",     "I",     "y",   "Y",   "n",   "o",    "O",     "u",      "U"}} ,
}

m["lu"] = {
	canonicalName = "ဠူဘ-ကာတေန်ဂါ",
	scripts = {"Latn"},
	family = "bnt",
}

m["lv"] = {
	canonicalName = "လပ်ဗဳယာ",
	otherNames = {"Latvian", "Lettish", "Lett"},
	scripts = {"Latn"},
	family = "bat",
	ancestors = {"ine-bsl-pro"},
	entry_name = {
		-- This attempts to convert vowels with tone marks to vowels either with
		-- or without macrons. Specifically, there should be no macrons if the
		-- vowel is part of a diphthong (including resonant diphthongs such
		-- pìrksts -> pirksts not #pīrksts). What we do is first convert the
		-- vowel + tone mark to a vowel + tilde in a decomposed fashion,
		-- then remove the tilde in diphthongs, then convert the remaining
		-- vowel + tilde sequences to macroned vowels, then delete any other
		-- tilde. We leave already-macroned vowels alone: Both e.g. ar and ār
		-- occur before consonants. FIXME: This still might not be sufficient.
		from = {"Ȩ", "ȩ", "[ÂÃÀ]", "[âãà]", "[ÊẼÈ]", "[êẽè]", "[ÎĨÌ]", "[îĩì]", "[ÔÕÒ]", "[ôõò]", "[ÛŨÙ]", "[ûũù]", "[ÑǸ]", "[ñǹ]", "[" .. CIRC .. TILDE ..GRAVE .."]", "([aAeEiIoOuU])" .. TILDE .."?([lrnmuiLRNMUI])" .. TILDE .. "?([^aAeEiIoOuUāĀēĒīĪūŪ])", "([aAeEiIoOuU])" .. TILDE .."?([lrnmuiLRNMUI])" .. TILDE .."?$", "([iI])" .. TILDE .. "?([eE])" .. TILDE .. "?", "A" .. TILDE, "a" .. TILDE, "E" .. TILDE, "e" .. TILDE, "I" .. TILDE, "i" .. TILDE, "U" .. TILDE, "u" .. TILDE, TILDE},
		to   = {"E", "e", "A" .. TILDE, "a" .. TILDE, "E" .. TILDE, "e" .. TILDE, "I" .. TILDE, "i" .. TILDE, "O", "o", "U" .. TILDE, "u" .. TILDE, "N", "n", TILDE, "%1%2%3", "%1%2", "%1%2", "Ā", "ā", "Ē", "ē", "Ī", "ī", "Ū", "ū", ""}},
}

m["mg"] = {
	canonicalName = "မာလာဂါသဳ",
	otherNames = {"Malagasy", "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", "Bushi", "Shibushi", "Kibushi", "Sakalava"},
	scripts = {"Latn"},
	family = "poz-bre",
}

m["mh"] = {
	canonicalName = "မာချဲလဳ",
	otherNames = {"Marshallese"},
	scripts = {"Latn"},
	family = "poz-mic",
	sort_key = {
		from = {"ā" , "ļ" , "m̧" , "ņ" , "n̄"  , "o̧" , "ō"  , "ū" },
		to   = {"a~", "l~", "m~", "n~", "n~~", "o~", "o~~", "u~"}} ,
}

m["mi"] = {
	canonicalName = "မဝ်ရဳ",
	otherNames = {"Maori", "Māori"},
	scripts = {"Latn"},
	family = "poz-pol",
	wikipedia_article = "Māori language",
}

m["mk"] = {
	canonicalName = "မက်သဳဒဝ်နဳယျာ",
	otherNames = {"Macedonian"},
	scripts = {"Cyrl"},
	family = "zls",
	translit_module = "mk-translit",
	ancestors = {"ine-pro", "ine-bsl-pro", "sla-pro"},
	entry_name = {
		from = {ACUTE},
		to   = {}},
}

m["ml"] = {
	canonicalName = "မလေဝ်ယျလာမ်",
	otherNames = {"Malayalam"},
	scripts = {"Mlym"},
	family = "dra",
	translit_module = "ml-translit",
	override_translit = true,
	wikipedia_article = "Malayalam",
}

m["mn"] = {
	canonicalName = "မန်ဂဝ်လဳယျာ",
	otherNames = {"မန်ဂဝ်လဳယျာ", "ခန်ခါ မန်ဂဝ်လဳယျာ"},
	scripts = {"Cyrl", "Mong", "Soyo", "Zanb"}, -- entries in Soyo or Zanb might require prior discussion
	family = "xgn",
	ancestors = {"cmg"},
	translit_module = "mn-translit",
	override_translit = true,
}

-- "mo" IS TREATED AS "ro", SEE WT:LT

m["mr"] = {
	canonicalName = "မာရဒဳ",
	otherNames = {"Marathi"},
	scripts = {"Deva", "Modi"},
	family = "inc",
	ancestors = {"omr"},
	translit_module = "hi-translit",
}

m["ms"] = {
	canonicalName = "မလေဝ်",
	otherNames = {"Malay", "Malaysian", "Standard Malay", "Orang Seletar", "Orang Kanaq", "Jakun", "Temuan"},
	scripts = {"Latn", "ms-Arab"},
	family = "poz-mly",
	ancestors = {"map-pro", "poz-pro", "poz-sus-pro", "poz-msa-pro", "poz-mcm-pro", "poz-mly-pro", "ms-old", "ms-cla"},
}

m["mt"] = {
	canonicalName = "မာလ်တဳ",
	otherNames = {"Maltese"},
	scripts = {"Latn"},
	family = "sem-arb",
	ancestors = {"sqr"},
}

m["my"] = {
	canonicalName = "ဗၟာ",
	otherNames = {"Burmese", "Myanmar", "ဗၟာ"},
	scripts = {"Mymr"},
	family = "tbq-brm",
	ancestors = {"obr", "sit-pro", "tbq-pro"},
	wikipedia_article = "ဘာသာဗၟာ",
	translit_module = "my-translit",
	override_translit = true,
}

m["na"] = {
	canonicalName = "နာဥူလောန်",
	otherNames = {"Nauruan","Nauru"},
	scripts = {"Latn"},
	family = "poz-mic",
}

m["nb"] = {
	canonicalName = "နဝ်ဝေ ဗော်ခ်မဝ်",
	otherNames = {"Norwegian Bokmål", "Bokmål"},
	scripts = {"Latn"},
	family = "gmq",
	ancestors = {"gmq-mno", "gem-pro"},
	wikimedia_codes = {"no"},
	wikipedia_article = "Bokmål",
}

m["nd"] = {
	canonicalName = "Northern Ndebele",
	otherNames = {"North Ndebele"},
	scripts = {"Latn"},
	family = "bnt-ngu",
	entry_name = {
		from = {"[āàáâǎ]", "[ēèéêě]", "[īìíîǐ]", "[ōòóôǒ]", "[ūùúûǔ]", "ḿ", "[ǹńň]", MACRON, ACUTE, GRAVE, CIRC, CARON},
		to   = {"a"      , "e"      , "i"      , "o"      , "u"      , "m", "n"    }},
}

m["ne"] = {
	"နဳပဝ်",
	33823,
	"inc-pah",
	scripts = {"Deva", "Newa"},
ancestors = {"ine-pro", "iir-pro", "inc-pro", "sa", "inc-ash", "pra-kha"},
	translit_module = "ne-translit",
}

m["ng"] = {
	canonicalName = "အွန်ဒွန်ဂါ",
	otherNames = {"Ndonga"},
	scripts = {"Latn"},
	family = "bnt",
	wikipedia_article = "Ndonga dialect",
}

m["nl"] = {
	canonicalName = "ဒါတ်",
	otherNames = {"Dutch", "Netherlandic", "Flemish"},
	scripts = {"Latn"},
	family = "gmw",
	ancestors = {"dum"},
	sort_key = {
		from = {"[äáâå]", "[ëéê]", "[ïíî]", "[öóô]", "[üúû]", "ç", "ñ", "^-"},
		to   = {"a"	 , "e"	, "i"	, "o"	, "u"	, "c", "n"}} ,
	standardChars = "A-Za-z0-9" .. PUNCTUATION .. u(0x2800) .. "-" .. u(0x28FF),
}

m["nn"] = {
	canonicalName = "နဝ်ဝေ နဳနိုတ်",
	otherNames = {"Norwegian Nynorsk", "New Norwegian", "Nynorsk"},
	scripts = {"Latn"},
	family = "gmq",
	ancestors = {"gmq-mno"},
	wikipedia_article = "Nynorsk",
}

m["no"] = {
	canonicalName = "နဝ်ဝေ",
	otherNames = {"Norwegian"},
	scripts = {"Latn"},
	family = "gmq",
	ancestors = {"gmq-mno"},
}

m["nr"] = {
	canonicalName = "အာန်ဒေဗေလေဝ် လ္ပာ်ဒိုဟ်သမၠုင်ကျာ",
	otherNames = {"South Ndebele"},
	scripts = {"Latn"},
	family = "bnt-ngu",
	entry_name = {
		from = {"[āàáâǎ]", "[ēèéêě]", "[īìíîǐ]", "[ōòóôǒ]", "[ūùúûǔ]", "ḿ", "[ǹńň]", MACRON, ACUTE, GRAVE, CIRC, CARON},
		to   = {"a"      , "e"      , "i"      , "o"      , "u"      , "m", "n"    }},
}

m["nv"] = {
	"နာဝါဟဝ်",
	13310,
	"apa",
	Latn,
	sort_key = {
		from = {"[áą]", "[éę]", "[íį]", "[óǫ]", "ń", "^n([djlt])", "ł" , "[ʼ’']", ACUTE},
		to   = {"a"   , "e"   , "i"   , "o"   , "n", "ni%1"	  , "l~"}}, -- the tilde is used to guarantee that ł will always be sorted after all other words with l
}

m["ny"] = {
	canonicalName = "ချဳချေန်ဝါ",
	otherNames = {"နရန်ဂျာ", "Chichewa", "Chicheŵa", "Chinyanja", "Nyanja", "Chewa", "Cicewa", "Cewa", "Cinyanja"},
	scripts = {"Latn"},
	family = "bnt",
	entry_name = {
		from = {"ŵ", "Ŵ", "á", "Á", "é", "É", "í", "Í", "ó", "Ó", "ú", "Ú", "ń", "Ń", "ḿ", "Ḿ" },
		to   = {"w", "W", "a", "A", "e", "E", "i", "I", "o", "O", "u", "U", "n", "N", "m", "M"}},
	sort_key = {
		from = {"ng'"},
		to   = {"ng"}} ,
	wikipedia_article = "Chewa language",
}

m["oc"] = {
	"အောက်စဳတာန်",
	"Q14185",
	"roa-ocr",
	aliases = {"အောက်စဳတာန်"},
	-- don't list varieties here that are in [[Module:etymology languages/data]]
	scripts = {"Latn", "Hebr"},
	ancestors = {"pro"},
	sort_key = {
		from = {"[àá]", "[èé]", "[íï]", "[òó]", "[úü]", "ç", "([lns])·h"},
		to   = {"a"   , "e"   , "i"   , "o"   , "u"   , "c", "%1h"	  }} ,
}


m["oj"] = {
	canonicalName = "အဝ်ဂျဳဗဝေ",
	otherNames = {"Ojibwe", "Chippewa", "Ojibway", "Ojibwemowin", "Southwestern Ojibwa"},
	scripts = {"Cans", "Latn"},
	family = "alg",
}

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

m["or"] = {
	canonicalName = "အဝ်ရေဝ်ယာ",
	otherNames = {"Oriya", "Odia", "Oorya"},
	scripts = {"Orya"},
	family = "inc",
	ancestors = {"inc-mgd"},
	translit_module = "or-translit",
	wikipedia_article = "Odia language",
}

m["os"] = {
	canonicalName = "အဝ်ဇြဳယာန်",
	otherNames = {"Ossetian", "Ossete", "Ossetic", "Digor", "Iron"},
	scripts = {"Cyrl", "Geor", "Latn"},
	family = "ira",
	ancestors = {"oos"},
	translit_module = "os-translit",
	override_translit = true,
	entry_name = {
		from = {GRAVE, ACUTE},
		to   = {}} ,
}

m["pa"] = {
	canonicalName = "ပါန်ချာပဳ",
	otherNames = {"Punjabi", "Panjabi"},
	scripts = {"Guru", "pa-Arab"},
	family = "inc-opa",
	ancestors = {"inc-opa"},
	translit_module = "translit-redirect",
	entry_name = {
		from = {u(0x064B), u(0x064C), u(0x064D), u(0x064E), u(0x064F), u(0x0650), u(0x0651), u(0x0652), u(0x0658), u(0x08C7), u(0x0768)},
		to   = {"", "", "", "", "", "", "", "", "", "ل", "ن"}} ,
}

m["pi"] = {
	"ပါဠိ",
	"Q36727",
	"inc-mid",
	scripts = {"Latn", "Brah", "Deva", "Beng", "Sinh", "Mymr", "Thai", "Lana", "Laoo", "Khmr"},
	ancestors = {"sa"},
	translit_module = "pi-translit",
	sort_key = {
		from = {"ā", "ī", "ū", "ḍ", "ḷ", "[ṁṃ]", "ṅ", "ñ", "ṇ", "ṭ", "([เโ])([ก-ฮ])", "([ເໂ])([ກ-ຮ])", "ᩔ", "ᩕ", "ᩖ", "ᩘ", "([ᨭ-ᨱ])ᩛ", "([ᨷ-ᨾ])ᩛ", "ᩤ", u(0xFE00), u(0x200D)},
		to   = {"a~", "i~", "u~", "d~", "l~", "m~", "n~", "n~~", "n~~~", "t~", "%2%1", "%2%1", "ᩈ᩠ᩈ", "᩠ᩁ", "᩠ᩃ", "ᨦ᩠", "%1᩠ᨮ", "%1᩠ᨻ", "ᩣ"}} ,
	entry_name = {
		from = {u(0xFE00)},
		to   = {}},
}


m["pl"] = {
	canonicalName = "ပဝ်လာန်",
	otherNames = {"Polish"},
	scripts = {"Latn"},
	family = "zlw",
	ancestors = {"zlw-opl", "sla-pro"},
	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"] = {
	"ပါသတုန်",
	"Q58680",
	"ira-pat",
	aliases = {"Pashtun", "Pushto", "Pashtu", "Afghani"},
	varieties = {"Central Pashto", "Northern Pashto", "Southern Pashto", {"Pukhto", "Pakhto", "Pakkhto"}},
	scripts = {"ps-Arab"},
	ancestors = {"ira-pat-pro"},
}

m["pt"] = {
	canonicalName = "ပဝ်တူဂြဳ",
	otherNames = {"Portuguese", "Modern Portuguese"},
	scripts = {"Latn", "Brai"},
	family = "roa",
	ancestors = {"ine-pro", "itc-pro", "itc-ola", "la", "roa-opt"},
	sort_key = {
		from = {"[àãáâä]", "[èẽéêë]", "[ìĩíï]", "[òóôõö]", "[üúùũ]", "ç", "ñ"},
		to   = {"a"	  , "e"	  , "i"	 , "o"	  , "u"	 , "c", "n"}} ,
}

m["qu"] = {
	canonicalName = "ခေန်ချူဝါ",
	scripts = {"Latn"},
	family = "qwe",
	wikipedia_article = "ဘာသာခေန်ချူဝါ",
}

m["rm"] = {
	canonicalName = "ရဝ်မာန်",
	otherNames = {"Romansch","Romansh", "Rumantsch", "Romanche"},
	scripts = {"Latn"},
	family = "roa",
	wikipedia_article = "Romansh language",
}

m["ro"] = {
	canonicalName = "ရဝ်မေနဳယျာ",
	otherNames = {"Romanian", "Daco-Romanian", "Roumanian", "Rumanian"},
	scripts = {"Latn", "Cyrl"},
	family = "roa",
	sort_key = {
        from = {"ă" , "â"  , "î" , "ș" , "ț" },
        to   = {"a~", "a~~", "i~", "s~", "t~"}},
}

m["ru"] = {
	canonicalName = "ရုဿျှာ",
	otherNames = {"Russian"},
	scripts = {"Cyrl", "Brai"},
	family = "zle",
	translit_module = "ru-translit",
	sort_key = {
		from = {"ё"},
		to   = {"е" .. mw.ustring.char(0x10FFFF)}},
	entry_name = {
		from = {"Ѐ", "ѐ", "Ѝ", "ѝ", GRAVE, ACUTE},
		to   = {"Е", "е", "И", "и"}},
	standardChars = "ЁІА-яёі0-9—" .. PUNCTUATION,
}

m["rw"] = {
	canonicalName = "ရဝမ်ဒါ ရမ်ဒဳ",
	otherNames = {"Rwanda-Rundi", "Rwanda", "Kinyarwanda", "Rundi", "Kirundi", "Ha", "Giha", "Hangaza", "Vinza", "Shubi", "Subi"},
	scripts = {"Latn"},
	family = "bnt",
	wikipedia_article = "Rwanda-Rundi",
}

m["sa"] = {
	canonicalName = "သံသကြိုတ်",
	otherNames = {"Sanskrit"},
	scripts = {"Deva", "Bali", "as-Beng", "Beng", "Bhks", "Brah", "Gran", "Gujr", "Guru", "Java", "Khar", "Khmr", "Knda", "Lana", "Laoo", "Mlym", "Modi", "Mymr", "Nand", "Newa", "Orya", "Saur", "Shrd", "Sidd", "Sinh", "Taml", "Telu", "Thai", "Tibt", "Tirh"},
	family = "inc-old",
	sort_key = {
		from = {"ā", "ī", "ū", "ḍ", "ḷ", "ḹ", "[ṁṃ]", "ṅ", "ñ", "ṇ", "ṛ", "ṝ", "ś", "ṣ", "ṭ", "([เโไ])([ก-ฮ])", "([ເໂໄ])([ກ-ຮ])", "ᩔ", "ᩕ", "ᩖ", "ᩘ", "([ᨭ-ᨱ])ᩛ", "([ᨷ-ᨾ])ᩛ", "ᩤ", u(0xFE00), u(0x200D)},
		to   = {"a~", "i~", "u~", "d~", "l~", "l~~", "m~", "n~", "n~~", "n~~~", "r~", "r~~", "s~", "s~~", "t~", "%2%1", "%2%1", "ᩈ᩠ᩈ", "᩠ᩁ", "᩠ᩃ", "ᨦ᩠", "%1᩠ᨮ", "%1᩠ᨻ", "ᩣ"}},
	entry_name = {
		from = {"ึ", u(0xF700), u(0xF70F), u(0xFE00)},
		to   = {"ิํ", "ฐ", "ญ"}},
	translit_module = "translit-redirect",
	ancestors = {"iir-pro", "inc-pro"},
}

m["sc"] = {
	canonicalName = "သာဒဳနဳယာန်",
	otherNames = {"Sardinian", "Campidanese", "Campidanese Sardinian", "Logudorese", "Logudorese Sardinian", "Nuorese", "Nuorese Sardinian"},
	scripts = {"Latn"},
	family = "roa",
}

m["sd"] = {
	"သိန္ဓိ",
	33997,
	"inc-snd",
	scripts = {"sd-Arab", "Deva", "Sind", "Khoj"},
	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)}},
	ancestors = {"inc-vra"},
	translit_module = "translit-redirect",
}

m["se"] = {
	canonicalName = "သာမိ သၟဝ်ကျာ",
	otherNames = {"Northern Sami", "North Sami", "Northern Saami", "North Saami"},
	scripts = {"Latn"},
	family = "smi",
	entry_name = {
		from = {"([đflmnŋrsšŧv])'%1"},
		to   = {"%1%1"} },
	wikipedia_article = "Northern Sami",
}

m["sg"] = {
	canonicalName = "သင်ဂဝ်",
	otherNames = {"Sango"},
	scripts = {"Latn"},
	family = "crp",
}

m["sh"] = {
	canonicalName = "သာဗ်ခြဝ်ဨရှဳယာန်",
	otherNames = {"Serbo-Croatian", "BCS", "Croato-Serbian", "Serbocroatian", "Bosnian", "Croatian", "Montenegrin", "Serbian"},
	scripts = {"Latn", "Cyrl"},
	family = "zls",
	ancestors = {"ine-pro", "ine-bsl-pro", "sla-pro"},
	entry_name = {
		from = {"[ȀÀȂÁĀÃ]", "[ȁàȃáāã]", "[ȄÈȆÉĒẼ]", "[ȅèȇéēẽ]", "[ȈÌȊÍĪĨ]", "[ȉìȋíīĩ]", "[ȌÒȎÓŌÕ]", "[ȍòȏóōõ]", "[ȐȒŔ]", "[ȑȓŕ]", "[ȔÙȖÚŪŨ]", "[ȕùȗúūũ]", "Ѐ", "ѐ", "[ӢЍ]", "[ӣѝ]", "[Ӯ]", "[ӯ]", GRAVE, ACUTE, DGRAVE, INVBREVE, MACRON, TILDE},
		to   = {"A"	  , "a"	  , "E"	  , "e"	  , "I"	  , "i"	  , "O"	  , "o"	  , "R"	, "r"	, "U"	  , "u"	  , "Е", "е", "И"   , "и", "У", "у"   }},
	wikimedia_codes = {"sh", "bs", "hr", "sr"},
	wikipedia_article = "Serbo-Croatian",
}

m["si"] = {
	canonicalName = "သိၚ်္ဃဵုရ်",
	otherNames = {"Sinhalese", "Singhalese", "Sinhala"},
	scripts = {"Sinh"},
	family = "inc",
	ancestors = {"elu-prk"},
	translit_module = "si-translit",
	override_translit = true,
}

m["sk"] = {
	canonicalName = "သလဝ်ဝေန်နဳယျာ",
	otherNames = {"Slovak"},
	scripts = {"Latn"},
	family = "zlw",
	ancestors = {"ine-pro", "ine-bsl-pro", "sla-pro", "zlw-osk"},
	sort_key = {
		from = {"[áä]", "é", "í", "[óô]", "ú", "ý", "ŕ", "ĺ", "[" .. DIAER .. ACUTE .. CIRC .. "]"},
		to   = {"a"   , "e", "i", "o"   , "u", "y", "r", "l", ""}} ,
}

m["sl"] = {
	canonicalName = "သၠဝ်ဝေနဳ",
	otherNames = {"Slovene", "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 = "သမဝ်အာန်",
	otherNames = {"Samoan"},
	scripts = {"Latn"},
	family = "poz-pol",
}

m["sn"] = {
	canonicalName = "သျှိနာ",
	otherNames = {"Shona"},
	scripts = {"Latn"},
	family = "bnt",
}

m["so"] = {
	canonicalName = "ဆဝ်မာလဳ",
	otherNames = {"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 = "အလ်ဗနဳယာန်",
	otherNames = {"Albanian"},
	scripts = {"Latn", "Elba"},
	family = "sqj",
	ancestors = {"ine-pro", "sqj-pro"},
	sort_key = {
		from = { '[âãä]', '[ÂÃÄ]', '[êẽë]', '[ÊẼË]', 'ĩ', 'Ĩ', 'õ', 'Õ', 'ũ', 'Ũ', 'ỹ', 'Ỹ', 'ç', 'Ç' },
		to   = {     'a',     'A',     'e',     'E', 'i', 'I', 'o', 'O', 'u', 'U', 'y', 'Y', 'c', 'C' } } ,
}

m["ss"] = {
	canonicalName = "သဝါဇြဳ",
	otherNames = {"Swazi", "Swati"},
	scripts = {"Latn"},
	family = "bnt-ngu",
	entry_name = {
		from = {"[āàáâǎ]", "[ēèéêě]", "[īìíîǐ]", "[ōòóôǒ]", "[ūùúûǔ]", "ḿ", "[ǹńň]", MACRON, ACUTE, GRAVE, CIRC, CARON},
		to   = {"a"      , "e"      , "i"      , "o"      , "u"      , "m", "n"    }},
	ancestors = {"bnt-pro"},
}

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

m["su"] = {
	canonicalName = "သာန်ဓနဳ",
	otherNames = {"Sundanese"},
	scripts = {"Sund", "Latn"},
	family = "poz-msa",
	ancestors = {"map-pro", "poz-pro", "poz-sus-pro", "poz-msa-pro", "osn"},
	translit_module = "su-translit",
}

m["sv"] = {
	canonicalName = "သွဳဒေန်",
	otherNames = {"Swedish"},
	scripts = {"Latn"},
	family = "gmq",
	ancestors = {"gmq-osw", "gem-pro", "ine-pro"},
	sort_key = {
		from = {"ö", "å", "ä"},
		to   = {"o", "a", "a"}} ,
}

m["sw"] = {
	canonicalName = "သဝါတ်ဟဳလဳ",
	otherNames = {"Swahili", "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 = "တမဳလ်",
	otherNames = {"Tamil"},
	scripts = {"Taml"},
	family = "dra",
	ancestors = {"oty"},
	translit_module = "ta-translit",
	override_translit = true,
}

m["te"] = {
	canonicalName = "တေလုဂု",
	otherNames = {"Telugu"},
	scripts = {"Telu"},
	family = "dra",
	translit_module = "te-translit",
	override_translit = true,
}

m["tg"] = {
	canonicalName = "တာဇိက်",
	otherNames = {"Tajik", "Tadjik", "Tadzhik", "Tajiki", "Tajik Persian"},
	scripts = {"Cyrl", "fa-Arab", "Latn"},
	family = "ira-wes",
	ancestors = {"fa"},
	translit_module = "tg-translit",
	override_translit = true,
	sort_key = {
		from = {"Ё", "ё"},
		to   = {"Е" , "е"}} ,
	entry_name = {
		from = {ACUTE},
		to   = {}} ,
}

m["th"] = {
	"သေံ",
	9217,
	family = "tai-swe",
	scripts = {"Thai", "Brai"},
	translit_module = "th-translit",
	sort_key = {
		from = {"[%pๆ]", "[็-๎]", "([เแโใไ])([ก-ฮ])"},
		to   = {"", "", "%2%1"}},
	ancestors = {"tai-pro"},
}

m["ti"] = {
	canonicalName = "တဳဂျရေဝ်ယျာ",
	otherNames = {"Tigrinya"},
	scripts = {"Ethi"},
	family = "sem-eth",
	translit_module = "Ethi-translit",
}

m["tk"] = {
	canonicalName = "တာခ်မေန်",
	otherNames = {"Turkmen"},
	scripts = {"Latn", "Cyrl"},
	family = "trk-ogz",
	entry_name = {
		from = {"ā", "ē", "ī", "ō", "ū", "ȳ", "ȫ", "ǖ", MACRON},
		to   = {"a", "e", "i", "o", "u", "y", "ö", "ü", ""}},
}

m["tl"] = {
	canonicalName = "တာဂါလံက်",
	otherNames = {"Tagalog"},
	scripts = {"Latn", "Tglg"},
	family = "phi",
	entry_name = {
		from = {"[áàâ]", "[éèê]", "[íìî]", "[óòô]", "[úùû]", ACUTE, GRAVE, CIRC},
		to   = {"a"    , "e"    , "i"    , "o"    , "u"    }},
	translit_module = "tl-translit",
	override_translit = true
}

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

m["to"] = {
	canonicalName = "ထံင်ဂံင်",
	otherNames = {"Tongan"},
	scripts = {"Latn"},
	family = "poz-pol",
}

m["tr"] = {
	canonicalName = "တူရကဳ",
	otherNames = {"Turkish"},
	scripts = {"Latn"},
	family = "trk-ogz",
	ancestors = {"ota"},
}

m["ts"] = {
	canonicalName = "ဆွန်ဂါ",
	otherNames = {"Tsonga"},
	scripts = {"Latn"},
	family = "bnt",
}

m["tt"] = {
	canonicalName = "တာတာ",
	otherNames = {"Tatar"},
	scripts = {"Cyrl", "Latn", "Arab", "tt-Arab"},
	family = "trk-kip",
	translit_module = "tt-translit",
	override_translit = true,
}

-- "tw" IS TREATED AS "ak", SEE WT:LT

m["ty"] = {
	canonicalName = "တဟဳတဳဃှေန်",
	otherNames = {"Tahitian"},
	scripts = {"Latn"},
	family = "poz-pol",
}

m["ug"] = {
	canonicalName = "ဥူဃူရ်",
	otherNames = {"Uigur", "Uighur", "Uygur"},
	scripts = {"ug-Arab", "Latn", "Cyrl"},
	family = "trk",
	ancestors = {"chg"},
	translit_module = "ug-translit",
	override_translit = true,
}

m["uk"] = {
	canonicalName = "ယူကရိန်",
	otherNames = {"Ukrainian"},
	scripts = {"Cyrl"},
	family = "zle",
	ancestors = {"ine-pro", "ine-bsl-pro", "sla-pro", "orv", "zle-ouk"},
	translit_module = "uk-translit",
	entry_name = {
		from = {"Ѐ", "ѐ", "Ѝ", "ѝ", GRAVE, ACUTE},
		to   = {"Е", "е", "И", "и"}},
	standardChars = "ЄІЇА-ЩЫЬЮ-щыьюяєії" .. PUNCTUATION
} 
m["ur"] = {
	"အူရဒူ",
	"Q1617",
	"inc-hnd",
	scripts = {"ur-Arab"},
	ancestors = {"inc-ohi"},
	entry_name = {
		from = {u(0x064B), u(0x064C), u(0x064D), u(0x064E), u(0x064F), u(0x0650), u(0x0651), u(0x0652)},
		to   = {}} ,
}

m["uz"] = {
	canonicalName = "ဥုသဗဝ်",
	otherNames = {"Uzbek", "Northern Uzbek", "Southern Uzbek"},
	scripts = {"Latn", "Cyrl", "fa-Arab"},
	family = "trk",
	ancestors = {"chg"},
	translit_module = "uz-translit"
}

m["ve"] = {
	canonicalName = "ဗါန်ဒါ",
	otherNames = {"Venda"},
	scripts = {"Latn"},
	family = "bnt",
}

m["vi"] = {
	canonicalName = "ဗဳယေတ်နာမ်",
	otherNames = {"Vietnamese", "Annamese", "Annamite"},
	scripts = {"Latn", "Hani"},
	family = "mkh-vie",
	ancestors = {"mkh-mvi"},
	sort_key = "vi-sortkey",
}

m["vo"] = {
	canonicalName = "ဝဝ်လပုက်",
	otherNames = {"Volapük"},
	scripts = {"Latn"},
	family = "art",
	wikipedia_article = "Volapük",
}

m["wa"] = {
	canonicalName = "ဝါဠူ",
	otherNames = {"Walloon", "Liégeois", "Namurois", "Wallo-Picard", "Wallo-Lorrain"},
	scripts = {"Latn"},
	family = "roa-oil",
	ancestors = {"fro"},
	sort_key = {
		from = {"[áàâäå]", "[éèêë]", "[íìîï]", "[óòôö]", "[úùûü]", "[ýỳŷÿ]", "ç", "'"},
		to   = {"a"	  , "e"	 , "i"	 , "o"	 , "u"	 , "y"	 , "c"}} ,
}

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

m["xh"] = {
	canonicalName = "ခါဝ်သာ",
	otherNames = {"Xhosa"},
	scripts = {"Latn"},
	family = "bnt-ngu",
	entry_name = {
		from = {"[āàáâǎ]", "[ēèéêě]", "[īìíîǐ]", "[ōòóôǒ]", "[ūùúûǔ]", "ḿ", "[ǹńň]", MACRON, ACUTE, GRAVE, CIRC, CARON},
		to   = {"a"      , "e"      , "i"      , "o"      , "u"      , "m", "n"    }},
	ancestors = {"bnt-pro"},
}

m["yi"] = {
	canonicalName = "ယိဒ်ဒိသ်",
	otherNames = {"Yiddish"},
	scripts = {"Hebr"},
	family = "gmw",
	ancestors = {"gmh"},
	translit_module = "yi-translit",
	wikipedia_article = "Yiddish",
}

m["yo"] = {
	canonicalName = "ရိုရုဗာ",
	otherNames = {"Yoruba"},
	scripts = {"Latn"},
	family = "alv-von",
	ancestors = {"alv-yor-pro", "alv-edk-pro", "alv-yrd-pro"},
}

m["za"] = {
	canonicalName = "ဇြုန်",
	otherNames = {"Standard Zhuang"},
	scripts = {"Latn", "Hani"},
	family = "tai",
	wikipedia_article = "Zhuang languages",
}

m["zh"] = {
	canonicalName = "ကြုက်",
	otherNames = {"Chinese"},
	scripts = {"Hani", "Brai"},
	family = "sit",
	ancestors = {"ltc", "sit-pro"},
	sort_key = "zh-sortkey",
}

m["zu"] = {
	canonicalName = "သြူဠူ",
	otherNames = {"Zulu", "isiZulu"},
	scripts = {"Latn"},
	family = "bnt-ngu",
	entry_name = {
                from = {"[āàáâǎ]", "[ēèéêě]", "[īìíîǐ]", "[ōòóôǒ]", "[ūùúûǔ]", "ḿ", "[ǹńň]", MACRON, ACUTE, GRAVE, CIRC, CARON},
                to   = {"a"      , "e"      , "i"      , "o"      , "u"      , "m", "n"    }},
	ancestors = {"bnt-pro"},
}

return m