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/extradata2.

Errorsแก้ไข

The following errors were detected by Module:data consistency check:

Module:languages/data2

Module:languages/data3/a

Module:languages/data3/b

Module:languages/data3/g

Module:languages/data3/i

Module:languages/data3/k

Module:languages/data3/l

Module:languages/data3/m

Module:languages/data3/o

Module:languages/data3/r

Module:languages/data3/s

Module:languages/data3/t

Module:languages/data3/u

Module:languages/data3/x

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.

The properties entry_name and sort_key are used for text substitution; they replace or remove certain characters or sets of characters. They both work similarly, and are optional. They can both be tables, and both can also be the name of a module that takes an entry name and generates a entry name or sort key (which is used to sort the entry on category pages), respectively.

if entry_name is the name of a module (for instance, "ar-entryname" referring to Module:ar-entryname), the module must contain a entry name generating function that is named makeEntryName. This function must take the arguments text, lang, where text is the page name (or other text in the language) and lang is the language code (not the language object) The returned value should always be a string, or there will be a module error in the Language:makeEntryName() function.

if sort_key is the name of a module (for instance, "zh-sortkey" referring to Module:zh-sortkey), the module must contain a sortkey-generating function that is named makeSortKey. This function must take the arguments text, lang, sc, where text is the page name (or other text in the language), lang is the language code (not the language object), and sc is the script code (not the script object). The returned value should always be a string, or there will be a module error in the Language:makeSortKey() function.

If entry_name or sort_key is a table, it should have one of (1) from and to, (2) remove_diacritics (and optionally remove_exceptions), or (3) both. 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 an argument to mw.ustring.gsub).

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.

entry_name and sort_key can also contain a string remove_diacritics, 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 (like á or ά).

Furthermore, if entry_name or sort_key contain a remove_diacritics string, they can also contain a remove_exceptions table, which prevents specific characters from having their diacritics removed. For instance, if remove_diacritics is a combining diaeresis, but remove_exceptions contains the value "ё", then any instances of "ё" will remain unchanged. On the other hand, an instance of "ӱ" will still become "у" (unless it is also added to remove_exceptions).

The tables can contain literal characters, or the patterns (a type of regular expressions) that are used by the standard Scribunto mw.ustring.gsub function. See the Scribunto reference manual for more information.

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 properly 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 (ōsos), as these are not used in the normal written form of these languages. This is used by makeEntryName in Module:languages.
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 makeSortKey in Module:languages.

These are other optional values:

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.
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, 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 table 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.
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 normally only be supplied if the Wikidata id cannot be used.
link_tr
Set this to true to link the language's transliteration. For instance, Gothic has entries in Gothic script and entries for transliterations: 𐌷𐌻𐌰𐌹𐌱𐍃 (ฮไลบส).
dotted_dotless_i
Set this to true for languages that distinguish between the dotted and dotless I (such as some Turkic languages).

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

-- Private use characters for sortkey placement.
local a, b, c, d, e, f, g, h = u(0xF000), u(0xF001), u(0xF002), u(0xF003), u(0xF004), u(0xF005), u(0xF006), u(0xF007)

-- UTF-8 encoded strings for some commonly-used diacritics
local GRAVE     = u(0x300)
local ACUTE     = u(0x301)
local CIRC      = u(0x302)
local TILDE     = u(0x303)
local MACRON    = u(0x304)
local BREVE     = u(0x306)
local DOTABOVE  = u(0x307)
local DIAER     = u(0x308)
local RINGABOVE = u(0x30A)
local DACUTE    = u(0x30B)
local CARON     = u(0x30C)
local DGRAVE    = u(0x30F)
local INVBREVE  = u(0x311)
local DOTBELOW  = u(0x323)
local DIAERBELOW = u(0x324)
local RINGBELOW = u(0x325)
local CEDILLA   = u(0x327)
local OGONEK    = u(0x328)
local BREVEBELOW = u(0x32E)
local CGJ       = u(0x34F) -- combining grapheme joiner
local DOUBLEINVBREVE = u(0x361)
local KASHIDA   = u(0x640)
local FATHATAN  = u(0x64B)
local DAMMATAN  = u(0x64C)
local KASRATAN  = u(0x64D)
local FATHA     = u(0x64E)
local DAMMA     = u(0x64F)
local KASRA     = u(0x650)
local SHADDA    = u(0x651)
local SUKUN     = u(0x652)
local NUNGHUNNA = u(0x658)
local SUPERALEF = u(0x670)

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

-- Use these in "scripts" to save a little memory.
local Arab = {"Arab"}
local CansLatn = {"Cans", "Latn"}
local Cyrl = {"Cyrl"}
local CyrlGeorLatn = {"Cyrl", "Geor", "Latn"}
local CyrlLatnArab = {"Cyrl", "Latn", "Arab"}
local Deva = {"Deva"}
local Ethi = {"Ethi"}
local Latn = {"Latn"}
local LatnArab = {"Latn", "Arab"}
local LatnBrai = {"Latn", "Brai"}
local LatnCyrlfaArab = {"Latn", "Cyrl", "fa-Arab"}
local LatnHani = {"Latn", "Hani"}
local LatnLatg = {"Latn", "Latg"}
local Tibt = {"Tibt"}

local m = {}

m["aa"] = {
	"อาฟาร์",
	27811,
	"cus-eas",
	Latn,
	entry_name = {remove_diacritics = ACUTE},
}

m["ab"] = {
	"อับคาเซีย",
	5111,
	"cau-abz",
	CyrlGeorLatn,
	--translit_module = "ab-translit",
	override_translit = true,
	entry_name = "cau-entryname",
	sort_key = {
		from = {
			"х'ә", -- 3 chars
			"гь", "гә", "ӷь", "ҕь", "ӷә", "ҕә", "дә", "ё", "жь", "жә", "ҙә", "ӡә", "ӡ'", "кь", "кә", "қь", "қә", "ҟь", "ҟә", "ҫә", "тә", "ҭә", "ф'", "хь", "хә", "х'", "ҳә", "ць", "цә", "ц'", "ҵә", "ҵ'", "шь", "шә", "џь", -- 2 chars
			"ӷ", "ҕ", "ҙ", "ӡ", "қ", "ҟ", "ԥ", "ҧ", "ҫ", "ҭ", "ҳ", "ҵ", "ҷ", "ҽ", "ҿ", "ҩ", "џ", "ә" -- 1 char
		},
		to = {
			"х" .. d,
			"г" .. a, "г" .. b, "г" .. e, "г" .. f, "г" .. g, "г" .. h, "д" .. a, "е" .. a, "ж" .. a, "ж" .. b, "з" .. b, "з" .. d, "з" .. e, "к" .. a, "к" .. b, "к" .. d, "к" .. e, "к" .. g, "к" .. h, "с" .. b, "т" .. a, "т" .. c, "ф" .. a, "х" .. a, "х" .. b, "х" .. c, "х" .. f, "ц" .. a, "ц" .. b, "ц" .. c, "ц" .. e, "ц" .. f, "ш" .. a, "ш" .. b, "ы" .. c,
			"г" .. c, "г" .. d, "з" .. a, "з" .. c, "к" .. c, "к" .. f, "п" .. a, "п" .. b, "с" .. a, "т" .. b, "х" .. e, "ц" .. d, "ч" .. a, "ч" .. b, "ч" .. c, "ы" .. a, "ы" .. b, "ь" .. a
		}
	},
}

m["ae"] = {
	"อเวสตะ",
	29572,
	"ira-cen",
	{"Avst", "Gujr"},
	translit_module = "Avst-translit",
	--wikipedia_article = "Avestan",
}

m["af"] = {
	"แอฟริคานส์",
	14196,
	"gmw",
	LatnArab,
	ancestors = {"nl"},
	sort_key = {remove_diacritics = GRAVE .. ACUTE .. CIRC .. TILDE .. DIAER .. RINGABOVE .. CEDILLA .. "'"},
}

m["ak"] = {
	"อาคัน",
	28026,
	"alv-ctn",
	Latn,
}

m["am"] = {
	"อัมฮารา",
	28244,
	"sem-eth",
	Ethi,
	translit_module = "Ethi-translit",
}

m["an"] = {
	"อารากอน",
	8765,
	"roa-ibe",
	Latn,
	ancestors = {"roa-oan"},
}

m["ar"] = {
	"อาหรับ",
	13955,
	"sem-arb",
	{"Arab", "Hebr", "Brai"},
	translit_module = "ar-translit",
	entry_name = "ar-entryname",
	-- put Judeo-Arabic (Hebrew-script Arabic) under the category header
	-- U+FB21 HEBREW LETTER WIDE ALEF so that it sorts after Arabic script titles
	sort_key = {
		from = {"^%f[" .. u(0x5D0) .. "-" .. u(0x5EA) .. "]"},
		to   = {u(0xFB21)},
	},
}

m["as"] = {
	"อัสสัม",
	29401,
	"inc-eas",
	{"as-Beng"},
	ancestors = {"inc-mas"},
	translit_module = "Beng-translit",
}

m["av"] = {
	"อะวาร์",
	29561,
	"cau-ava",
	CyrlLatnArab,
	ancestors = {"oav"},
	--translit_module = "av-translit",
	override_translit = true,
	entry_name = "cau-entryname",
	sort_key = {
		from = {"гъ", "гь", "гӏ", "ё", "кк", "къ", "кь", "кӏ", "лъ", "лӏ", "тӏ", "хх", "хъ", "хь", "хӏ", "цӏ", "чӏ"},
		to = {"г" .. a, "г" .. b, "г" .. c, "е" .. a, "к" .. a, "к" .. b, "к" .. c, "к" .. d, "л" .. a, "л" .. b, "т" .. a, "х" .. a, "х" .. b, "х" .. c, "х" .. d, "ц" .. a, "ч" .. a}
	},
}

m["ay"] = {
	"ไอย์มารา",
	4627,
	"sai-aym",
	Latn,
}

m["az"] = {
	"อาเซอร์ไบจาน",
	9292,
	"trk-ogz",
	LatnCyrlfaArab,
	ancestors = {"trk-oat"},
	dotted_dotless_i = true,
	sort_key = {
		from = {
			"i", -- Ensure "i" comes after "ı".
			"ç", "ə", "ğ", "x", "ı", "ö", "ş", "ü", -- Latin
			"ғ", "ә", "ы", "ј", "ҝ", "ө", "ү", "һ", "ҹ" -- Cyrillic
		},
		to = {
			"i" .. a,
			"c" .. a, "e" .. a, "g" .. a, "h" .. a, "i", "o" .. a, "s" .. a, "u" .. a,
			"г" .. a, "е" .. a, "и" .. a, "и" .. b, "к" .. a, "о" .. a, "у" .. a, "х" .. a, "ч" .. a
		}
	},
}

m["ba"] = {
	"แบชเคียร์",
	13389,
	"trk-kbu",
	Cyrl,
	translit_module = "ba-translit",
	override_translit = true,
	sort_key = {
		from = {"ғ", "ҙ", "ё", "ҡ", "ң", "ө", "ҫ", "ү", "һ", "ә"},
		to = {"г" .. a, "д" .. a, "е" .. a, "к" .. a, "н" .. a, "о" .. a, "с" .. a, "у" .. a, "х" .. a, "э" .. a}
	},
}

m["be"] = {
	"เบลารุส",
	9091,
	"zle",
	Cyrl,
	ancestors = {"zle-ort"},
	translit_module = "be-translit-Thai",
	entry_name = {remove_diacritics = GRAVE .. ACUTE},
	sort_key = {
		from = {"ґ", "ё", "і", "ў"},
		to = {"г" .. a, "е" .. a, "и" .. a, "у" .. a}
	},
}

m["bg"] = {
	"บัลแกเรีย",
	7918,
	"zls",
	Cyrl,
	ancestors = {"cu"},
	translit_module = "bg-translit",
	entry_name = {remove_diacritics = GRAVE .. ACUTE},
}

m["bh"] = {
	"พิหาร",
	135305,
	"inc-eas",
	Deva,
	ancestors = {"inc-mgd"},
	translit_module = "Deva-translit",
}

m["bi"] = {
	"บิสลามา",
	35452,
	"crp",
	Latn,
	ancestors = {"en"},
}

m["bm"] = {
	"บัมบารา",
	33243,
	"dmn-emn",
	Latn,
	sort_key = {
		from = {"ɛ", "ɲ", "ŋ", "ɔ"},
		to = {"e" .. a, "n" .. a, "n" .. b, "o" .. a}
	},
}

m["bn"] = {
	"เบงกอล",
	9610,
	"inc-eas",
	{"Beng", "Newa"},
	ancestors = {"inc-mbn"},
	translit_module = "Beng-translit",
}

m["bo"] = {
	"ทิเบต",
	34271,
	"sit-tib",
	Tibt, -- sometimes Deva?
	ancestors = {"xct"},
	translit_module = "Tibt-translit",
	override_translit = true,
	entry_name = {
		from = {"ༀ", "༌", "།།", "༚༚", "༚༝", "༝༚", "༝༝", "ཷ", "ཹ", "ེེ", "ོོ"},
		to = {"ཨོཾ", "་", "༎", "༛", "༟", "࿎", "༞", "ྲཱྀ", "ླཱྀ", "ཻ", "ཽ"}
	},
	sort_key = "Tibt-sortkey",
}

m["br"] = {
	"เบรอตง",
	12107,
	"cel-bry",
	Latn,
	ancestors = {"xbm"},
	sort_key = {
		from = {"ch", "c'h"},
		to = {"c" .. a, "c" .. b}
	},
}

m["ca"] = {
	"กาตาลา",
	7026,
	"roa-ocr",
	Latn,
	ancestors = {"roa-oca"},
	sort_key = {
		remove_diacritics = GRAVE .. ACUTE .. DIAER .. CEDILLA,
		from = {"l·l"},
		to = {"ll"}
	},
}

m["ce"] = {
	"เชเชน",
	33350,
	"cau-vay",
	CyrlLatnArab,
	--translit_module = "ce-translit",
	override_translit = true,
	entry_name = "cau-entryname",
	sort_key = {
		from = {"аь", "гӏ", "ё", "кх", "къ", "кӏ", "оь", "пӏ", "тӏ", "уь", "хь", "хӏ", "цӏ", "чӏ", "юь", "яь"},
		to = {"а" .. a, "г" .. a, "е" .. a, "к" .. a, "к" .. b, "к" .. c, "о" .. a, "п" .. a, "т" .. a, "у" .. a, "х" .. a, "х" .. b, "ц" .. a, "ч" .. a, "ю" .. a, "я" .. a}
	},
}

m["ch"] = {
	"ชามอร์โร",
	33262,
	"poz-sus",
	Latn,
	sort_key = {
		remove_diacritics = "'",
		from = {"å", "ch", "ñ", "ng"},
		to = {"a" .. a, "c" .. a, "n" .. a, "n" .. b}
	},
}

m["co"] = {
	"คอร์ซิกา",
	33111,
	"roa-itd",
	Latn,
	sort_key = {
		from = {"chj", "ghj", "sc", "sg"},
		to = {"c" .. a, "g" .. a, "s" .. a, "s" .. b}
	},
}

m["cr"] = {
	"ครี",
	33390,
	"alg",
	CansLatn,
	--translit_module = "translit-redirect",
}

m["cs"] = {
	"เช็ก",
	9056,
	"zlw",
	Latn,
	ancestors = {"zlw-ocs"},
	sort_key = {
		from = {"á", "č", "ď", "é", "ě", "ch", "í", "ň", "ó", "ř", "š", "ť", "ú", "ů", "ý", "ž"},
		to = {"a" .. a, "c" .. a, "d" .. a, "e" .. a, "e" .. b, "h" .. a, "i" .. a, "n" .. a, "o" .. a, "r" .. a, "s" .. a, "t" .. a, "u" .. a, "u" .. b, "y" .. a, "z" .. a}
	},
}

m["cu"] = {
	"สลาวอนิกคริสตจักรเก่า",
	35499,
	"zls",
	{"Cyrs", "Glag"},
	translit_module = "Cyrs-Glag-translit",
	entry_name = "Cyrs-entryname",
	sort_key = "Cyrs-sortkey",
}

m["cv"] = {
	"ชูวัช",
	33348,
	"trk-ogr",
	Cyrl,
	ancestors = {"xbo"},
	translit_module = "cv-translit",
	override_translit = true,
	sort_key = {
		from = {"ӑ", "ё", "ӗ", "ҫ", "ӳ"},
		to = {"а" .. a, "е" .. a, "е" .. b, "с" .. a, "у" .. a}
	},
}

m["cy"] = {
	"เวลส์",
	9309,
	"cel-bry",
	Latn,
	ancestors = {"wlm"},
	sort_key = {
		from = {"ӑ", "ё", "ӗ", "ҫ", "ӳ"},
		to = {"а" .. a, "е" .. a, "е" .. b, "с" .. a, "у" .. a}
	},
	standardChars = "A-IL-PR-UWYa-il-pr-uwy0-9ÂâÊêÎîÔôÛûŴŵŶŷ" .. PUNCTUATION,
}

m["da"] = {
	"เดนมาร์ก",
	9035,
	"gmq",
	Latn,
	ancestors = {"gmq-oda"},
	sort_key = {
		from = {"æ", "ø", "å"},
		to = {"z" .. a, "z" .. b, "z" .. c}
	},
}

m["de"] = {
	"เยอรมัน",
	188,
	"gmw",
	{"Latn", "Latf"},
	ancestors = {"gmh"},
	sort_key = {
		remove_diacritics = GRAVE .. ACUTE .. CIRC .. DIAER .. RINGABOVE,
		from = {"ß"},
		to = {"ss"}
	},
	standardChars = "A-Za-z0-9ÄäÖöÜüß" .. PUNCTUATION,
}

m["dv"] = {
	"มัลดีฟส์",
	32656,
	"inc-ins",
	{"Thaa", "Diak"},
	ancestors = {"elu-prk"},
	--translit_module = "translit-redirect",
	override_translit = true,
}

m["dz"] = {
	"ซองคา",
	33081,
	"sit-tib",
	Tibt,
	ancestors = {"xct"},
	translit_module = "Tibt-translit",
	override_translit = true,
	entry_name = {
		from = {"ༀ", "༌", "།།", "༚༚", "༚༝", "༝༚", "༝༝", "ཷ", "ཹ", "ེེ", "ོོ"},
		to = {"ཨོཾ", "་", "༎", "༛", "༟", "࿎", "༞", "ྲཱྀ", "ླཱྀ", "ཻ", "ཽ"}
	},
	sort_key = "Tibt-sortkey",
}

m["ee"] = {
	"เอเว",
	30005,
	"alv-gbe",
	Latn,
	sort_key = {
		remove_diacritics = TILDE,
		from = {"ɖ", "dz", "ɛ", "ƒ", "gb", "ɣ", "kp", "ny", "ŋ", "ɔ", "ts", "ʋ"},
		to = {"d" .. a, "d" .. b, "e" .. a, "f" .. a, "g" .. a, "g" .. b, "k" .. a, "n" .. a, "n" .. b, "o" .. a, "t" .. a, "v" .. a}
	},
}

m["el"] = {
	"กรีก",
	9129,
	"grk",
	{"Grek", "Brai"},
	ancestors = {"grc"},
	translit_module = "el-translit",
	override_translit = true,
	entry_name = {remove_diacritics = CARON .. DIAERBELOW .. BREVEBELOW},
	--sort_key = "Grek-sortkey",
	standardChars = "ͺ;΄-ώϜϝ" .. PUNCTUATION,
}

m["en"] = {
	"อังกฤษ",
	1860,
	"gmw",
	{"Latn", "Brai", "Shaw", "Dsrt"}, -- entries in Shaw or Dsrt might require prior discussion
	ancestors = {"enm"},
	sort_key = {
		remove_diacritics = GRAVE .. ACUTE .. CIRC .. TILDE .. MACRON .. DIAER .. RINGABOVE .. CARON .. CEDILLA .. "'",
		from = {"æ", "œ"},
		to = {"ae", "oe"}
	},
	wikimedia_codes = {"en", "simple"},
	standardChars = "A-Za-z0-9" .. PUNCTUATION .. u(0x2800) .. "-" .. u(0x28FF),
}

m["eo"] = {
	"เอสเปรันโต",
	143,
	"art",
	Latn,
	translit_module = "eo-translit",
	sort_key = {
		remove_diacritics = GRAVE .. ACUTE,
		from = {"ĉ", "ĝ", "ĥ", "ĵ", "ŝ", "ŭ"},
		to = {"c" .. a, "g" .. a, "h" .. a, "j" .. a, "s" .. a, "u" .. a}
	},
	standardChars = "A-PRSTUVZa-prstuvzĉĈĝĜĵĴŝŜŭŬ0-9" .. PUNCTUATION,
}

m["es"] = {
	"สเปน",
	1321,
	"roa-ibe",
	LatnBrai,
	ancestors = {"osp"},
	sort_key = {
		remove_diacritics = ACUTE .. DIAER .. CEDILLA,
		from = {"ñ"},
		to = {"n" .. a}
	},
	standardChars = "A-VXYZa-vxyz0-9ÁáÉéÍíÓóÚúÑñ¿¡" .. PUNCTUATION,
}

m["et"] = {
	"เอสโตเนีย",
	9072,
	"urj-fin",
	Latn,
	sort_key = {
		from = {
			"š", "ž", "õ", "ä", "ö", "ü", -- 2 chars
			"z" -- 1 char
		},
		to = {
			"s" .. a, "s" .. c, "w" .. a, "w" .. b, "w" .. c, "w" .. d,
			"s" .. b
		}
	},
}

m["eu"] = {
	"บาสก์",
	8752,
	"euq",
	Latn,
	sort_key = {
		from = {"ç", "ñ"},
		to = {"c" .. a, "n" .. a}
	},
}

m["fa"] = {
	"เปอร์เซีย",
	9168,
	"ira-swi",
	{"fa-Arab"},
	ancestors = {"pal"}, -- "ira-mid"
	entry_name = {remove_diacritics = FATHATAN .. DAMMATAN .. KASRATAN .. KASHIDA .. FATHA .. DAMMA .. KASRA .. SHADDA .. SUKUN},
}

m["ff"] = {
	"ฟูลา",
	33454,
	"alv-fwo",
	{"Latn", "Adlm"},
}

m["fi"] = {
	"ฟินแลนด์",
	1412,
	"urj-fin",
	Latn,
	entry_name = {remove_diacritics = "ˣ"}, -- used to indicate gemination of the next consonant
	sort_key = {
		remove_diacritics = GRAVE .. ACUTE .. CIRC .. TILDE .. DACUTE .. CARON .. CEDILLA .. "':",
		from = {"ø", "æ", "œ", "ß"},
		to = {"o", "ae", "oe", "ss"}
	},
}

m["fj"] = {
	"ฟีจี",
	33295,
	"poz-occ",
	Latn,
}

m["fo"] = {
	"แฟโร",
	25258,
	"gmq",
	Latn,
	ancestors = {"non"},
	sort_key = {
		from = {"á", "ð", "í", "ó", "ú", "ý", "æ", "ø"},
		to = {"a" .. a, "d" .. a, "i" .. a, "o" .. a, "u" .. a, "y" .. a, "z" .. a, "z" .. b}
	},
}

m["fr"] = {
	"ฝรั่งเศส",
	150,
	"roa-oil",
	LatnBrai,
	ancestors = {"frm"},
	sort_key = "fr-sortkey",
	standardChars = "A-Za-z0-9ÀÂÇÉÈÊËÎÏÔŒÛÙÜàâçéèêëîïôœûùü«»" .. PUNCTUATION,
}

m["fy"] = {
	"ฟรีเชียตะวันตก",
	27175,
	"gmw-fri",
	Latn,
	ancestors = {"ofs"},
	sort_key = {
		remove_diacritics = GRAVE .. ACUTE .. CIRC .. DIAER,
		from = {"y"},
		to = {"i"}
	},
	standardChars = "A-PR-WYZa-pr-wyz0-9Ææâäàéêëèïìôöòúûüùỳ" .. PUNCTUATION,
}

m["ga"] = {
	"ไอริช",
	9142,
	"cel-gae",
	LatnLatg,
	ancestors = {"mga"},
	sort_key = {
		remove_diacritics = ACUTE,
		from = {"ḃ", "ċ", "ḋ", "ḟ", "ġ", "ṁ", "ṗ", "ṡ", "ṫ"},
		to = {"bh", "ch", "dh", "fh", "gh", "mh", "ph", "sh", "th"}
	},
	standardChars = "A-IL-PR-Ua-il-pr-u0-9ÁáÉéÍíÓóÚú" .. PUNCTUATION,
}

m["gd"] = {
	"แกลิกแบบสกอตแลนด์",
	9314,
	"cel-gae",
	LatnLatg,
	ancestors = {"mga"},
	sort_key = {remove_diacritics = GRAVE .. ACUTE},
	standardChars = "A-IL-PR-Ua-il-pr-u0-9ÀàÈèÌìÒòÙù" .. PUNCTUATION,
}

m["gl"] = {
	"กาลิเซีย",
	9307,
	"roa-ibe",
	Latn,
	ancestors = {"roa-opt"},
	sort_key = {
		remove_diacritics = ACUTE,
		from = {"ñ"},
		to = {"n" .. a}
	},
}

m["gn"] = {
	"กัวรานี",
	35876,
	"tup-gua",
	Latn,
}

m["gu"] = {
	"คุชราต",
	5137,
	"inc-wes",
	{"Gujr"},
	ancestors = {"inc-mgu"},
	translit_module = "Gujr-translit",
}

m["gv"] = {
	"แมงซ์",
	12175,
	"cel-gae",
	Latn,
	ancestors = {"mga"},
	sort_key = {remove_diacritics = CEDILLA .. "-"},
	standardChars = "A-WYÇa-wyç0-9" .. PUNCTUATION,
}

m["ha"] = {
	"เฮาซา",
	56475,
	"cdc-wst",
	LatnArab,
	entry_name = {remove_diacritics = GRAVE .. ACUTE .. CIRC .. TILDE .. MACRON},
	sort_key = {
		from = {"ɓ", "b'", "ɗ", "d'", "ƙ", "k'", "sh", "ƴ", "'y"},
		to = {"b" .. a, "b" .. b, "d" .. a, "d" .. b, "k" .. a, "k" .. b, "s" .. a, "y" .. a, "y" .. b}
	},
}

m["he"] = {
	"ฮีบรู",
	9288,
	"sem-can",
	{"Hebr", "Phnx", "Brai"},
	translit_module = "he-translit",
	entry_name = {remove_diacritics = u(0x0591) .. "-" .. u(0x05BD) .. u(0x05BF) .. "-" .. u(0x05C5) .. u(0x05C7) .. CGJ},
}

m["hi"] = {
	"ฮินดี",
	1568,
	"inc-hnd",
	{"Deva", "Kthi", "Newa"},
	ancestors = {"inc-ohi"},
	translit_module = "Deva-translit",
	standardChars = "ँंअ-ऊएऐओ-घच-झट-नप-रलवशसहा-ूेैो-◌्।-॰ड़ढ़" .. PUNCTUATION,
}

m["ho"] = {
	"ฮีรีโมตู",
	33617,
	"crp",
	Latn,
	ancestors = {"meu"},
}

m["ht"] = {
	"ครีโอลเฮติ",
	33491,
	"crp",
	Latn,
	ancestors = {"fr"},
	sort_key = {
		from = {
			"oun", -- 3 chars
			"an", "ch", "è", "en", "ng", "ò", "on", "ou", "ui" -- 2 chars
		},
		to = {
			"o" .. d,
			"a" .. a, "c" .. a, "e" .. a, "e" .. b, "n" .. a, "o" .. a, "o" .. b, "o" .. c, "u" .. a
		}
	},
}

m["hu"] = {
	"ฮังการี",
	9067,
	"urj-ugr",
	{"Latn", "Hung"},
	ancestors = {"ohu"},
	sort_key = {
		from = {
			"dzs", -- 3 chars
			"á", "cs", "dz", "é", "gy", "í", "ly", "ny", "ó", "ö", "ő", "sz", "ty", "ú", "ü", "ű", "zs", -- 2 chars
		},
		to = {
			"d" .. b,
			"a" .. a, "c" .. a, "d" .. a, "e" .. a, "g" .. a, "i" .. a, "l" .. a, "n" .. a, "o" .. a, "o" .. b, "o" .. c, "s" .. a, "t" .. a, "u" .. a, "u" .. b, "u" .. c, "z" .. a,
		}
	},
}

m["hy"] = {
	"อาร์มีเนีย",
	8785,
	"hyx",
	{"Armn", "Brai"},
	ancestors = {"axm"},
	translit_module = "Armn-translit",
	override_translit = true,
	entry_name = {
		remove_diacritics = "՛՜՞՟",
		from = {"եւ", "<sup>յ</sup>", "<sup>ի</sup>", "<sup>է</sup>"},
		to   = {"և", "յ", "ի", "է"}
	},
	sort_key = {
		from = {
			"ու", "եւ", -- 2 chars
			"և" -- 1 char
		},
		to = {
			"ւ", "եվ",
			"եվ"
		}
	},
}

m["hz"] = {
	"เฮเรโร",
	33315,
	"bnt-swb",
	Latn,
}

m["ia"] = {
	"อินเทอร์ลิงกวา",
	35934,
	"art",
	Latn,
}

m["id"] = {
	"อินโดนีเซีย",
	9240,
	"poz-mly",
	Latn,
	ancestors = {"ms"},
}

m["ie"] = {
	"Interlingue",
	35850,
	"art",
	Latn,
	type = "appendix-constructed",
	entry_name = {remove_diacritics = GRAVE .. ACUTE .. CIRC},
}

m["ig"] = {
	"อิกโบ",
	33578,
	"alv-igb",
	Latn,
	entry_name = {remove_diacritics = GRAVE .. ACUTE .. MACRON},
	sort_key = {
		from = {"gb", "gh", "gw", "ị", "kp", "kw", "ṅ", "nw", "ny", "ọ", "sh", "ụ"},
		to = {"g" .. a, "g" .. b, "g" .. c, "i" .. a, "k" .. a, "k" .. b, "n" .. a, "n" .. b, "n" .. c, "o" .. a, "s" .. a, "u" .. a}
	},
}

m["ii"] = {
	"นอซู",
	34235,
	"tbq-lol",
	{"Yiii"},
	translit_module = "ii-translit",
}

m["ik"] = {
	"Inupiaq",
	27183,
	"esx-inu",
	Latn,
	sort_key = {
		from = {
			"ch", "ġ", "dj", "ḷ", "ł̣", "ñ", "ng", "r̂", "sr", "zr", -- 2 chars
			"ł", "ŋ", "ʼ" -- 1 char
		},
		to = {
			"c" .. a, "g" .. a, "h" .. a, "l" .. a, "l" .. c, "n" .. a, "n" .. b, "r" .. a, "s" .. a, "z" .. a,
			"l" .. b, "n" .. b, "z" .. b
		}
	},
}

m["io"] = {
	"อีโด",
	35224,
	"art",
	Latn,
}

m["is"] = {
	"ไอซ์แลนด์",
	294,
	"gmq",
	Latn,
	ancestors = {"non"},
	sort_key = {
		from = {"á", "ð", "é", "í", "ó", "ú", "ý", "þ", "æ", "ö"},
		to = {"a" .. a, "d" .. a, "e" .. a, "i" .. a, "o" .. a, "u" .. a, "y" .. a, "z" .. a, "z" .. b, "z" .. c}
	},
}

m["it"] = {
	"อิตาลี",
	652,
	"roa-itd",
	Latn,
	sort_key = {remove_diacritics = GRAVE .. ACUTE .. CIRC .. DIAER .. RINGABOVE},
	standardChars = "A-IL-VZa-il-vz0-9ÀàÈèÌìÒòÙùÉé" .. PUNCTUATION,
}

m["iu"] = {
	"อินุกติตุต",
	29921,
	"esx-inu",
	CansLatn,
	--translit_module = "translit-redirect",
	override_translit = true,
}

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

m["jv"] = {
	"ชวา",
	33549,
	"poz-sus",
	{"Latn", "Java"},
	translit_module = "translit-redirect",
	ancestors = {"kaw"},
	link_tr = true,
	sort_key = {
		from = {"dh", "é", "è", "ng", "ny", "th"},
		to = {"d" .. a, "e" .. a, "e" .. b, "n" .. a, "n" .. b, "t" .. a}
	}
}

m["ka"] = {
	"จอร์เจีย",
	8108,
	"ccs-gzn",
	{"Geor", "Geok", "Hebr"}, -- Hebr is used to write Judeo-Georgian
	ancestors = {"oge"},
	translit_module = "Geor-translit",
	override_translit = true,
	entry_name = {remove_diacritics = CIRC},
}

m["kg"] = {
	"คองโก",
	33702,
	"bnt-kng",
	Latn,
}

m["ki"] = {
	"เกโกโย",
	33587,
	"bnt-kka",
	Latn,
}

m["kj"] = {
	"Kwanyama",
	1405077,
	"bnt-ova",
	Latn,
}

m["kk"] = {
	"คาซัค",
	9252,
	"trk-kno",
	{"Cyrl", "Latn", "kk-Arab"},
	translit_module = "kk-translit",
	override_translit = true,
	sort_key = {
		from = {"ә", "ғ", "ё", "қ", "ң", "ө", "ұ", "ү", "һ", "і"},
		to = {"а" .. a, "г" .. a, "е" .. a, "к" .. a, "н" .. a, "о" .. a, "у" .. a, "у" .. b, "х" .. a, "ы" .. a}
	}
}

m["kl"] = {
	"กรีนแลนด์",
	25355,
	"esx-inu",
	Latn,
	sort_key = {
		from = {"æ", "ø", "å"},
		to = {"z" .. a, "z" .. b, "z" .. c}
	}
}

m["km"] = {
	"เขมร",
	9205,
	"mkh-kmr",
	{"Khmr"},
	ancestors = {"xhm"},
	translit_module = "Khmr-translit",
}

m["kn"] = {
	"กันนาดา",
	33673,
	"dra",
	{"Knda"},
	ancestors = {"dra-mkn"},
	translit_module = "Knda-translit",
}

m["ko"] = {
	"เกาหลี",
	9176,
	"qfa-kor",
	{"Kore", "Brai"},
	ancestors = {"ko-ear"},
	--translit_module = "ko-translit",
	--entry_name = "Kore-entryname",
}

m["kr"] = {
	"Kanuri",
	36094,
	"ssa-sah",
	LatnArab,
	entry_name = {remove_diacritics = GRAVE .. ACUTE .. CIRC .. BREVE},  -- 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
	sort_key = {
		from = {"ǝ", "ny", "ɍ", "sh"},
		to = {"e" .. a, "n" .. a, "r" .. a, "s" .. a}
	}
}

m["ks"] = {
	"แคชเมียร์",
	33552,
	"inc-dar",
	{"ks-Arab", "Deva", "Shrd", "Latn"},
	--translit_module = "translit-redirect",
}

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

m["kw"] = {
	"คอร์นวอลล์",
	25289,
	"cel-bry",
	Latn,
	ancestors = {"cnx"},
	sort_key = {
		from = {"ch"},
		to = {"c" .. a}
	},
}

m["ky"] = {
	"คีร์กีซ",
	9255,
	"trk-kip",
	CyrlLatnArab,
	translit_module = "ky-translit",
	override_translit = true,
	sort_key = {
		from = {"ё", "ң", "ө", "ү"},
		to = {"е" .. a, "н" .. a, "о" .. a, "у" .. a}
	},
}

m["la"] = {
	"ละติน",
	397,
	"itc",
	{"Latn", "Ital"},
	entry_name = {remove_diacritics = MACRON .. BREVE .. DIAER .. DOUBLEINVBREVE},
	sort_key = {
		from = {"æ", "œ"},
		to = {"ae", "oe"}
	},
	standardChars = "A-Za-z0-9ÆæŒœĀ-ăĒ-ĕĪ-ĭŌ-ŏŪ-ŭȲȳ" .. MACRON .. BREVE .. PUNCTUATION,
}

m["lb"] = {
	"ลักเซมเบิร์ก",
	9051,
	"gmw",
	Latn,
	ancestors = {"gmw-cfr"},
	sort_key = {
		from = {"ä", "ë", "é"},
		to = {"z" .. a, "z" .. b, "z" .. c}
	},
}

m["lg"] = {
	"ลูกันดา",
	33368,
	"bnt-nyg",
	Latn,
	entry_name = {remove_diacritics = ACUTE .. CIRC},
	sort_key = {
		from = {"ŋ"},
		to = {"n" .. a}
	},
}

m["li"] = {
	"ลิมเบิร์ก",
	102172,
	"gmw",
	Latn,
	ancestors = {"dum"},
}

m["ln"] = {
	"ลิงกาลา",
	36217,
	"bnt-bmo",
	Latn,
	sort_key = {
		remove_diacritics = ACUTE .. CIRC .. CARON,
		from = {"ɛ", "gb", "mb", "mp", "nd", "ng", "nk", "ns", "nt", "ny", "nz", "ɔ"},
		to = {"e" .. a, "g" .. a, "m" .. a, "m" .. b, "n" .. a, "n" .. b, "n" .. c, "n" .. d, "n" .. e, "n" .. f, "n" .. g, "o" .. a}
	},
}

m["lo"] = {
	"ลาว",
	9211,
	"tai-swe",
	{"Laoo"},
	translit_module = "Laoo-translit",
	--sort_key = "Laoo-sortkey",
	standardChars = "0-9ກຂຄງຈຊຍດຕຖທນບປຜຝພຟມຢຣລວສຫອຮຯ-ໝ" .. PUNCTUATION,
}

m["lt"] = {
	"ลิทัวเนีย",
	9083,
	"bat",
	Latn,
	ancestors = {"olt"},
	entry_name = {remove_diacritics = GRAVE .. ACUTE .. TILDE},
	sort_key = {
		from = {"ą", "č", "ę", "ė", "į", "y", "š", "ų", "ū", "ž"},
		to = {"a" .. a, "c" .. a, "e" .. a, "e" .. b, "i" .. a, "i" .. b, "s" .. a, "u" .. a, "u" .. b, "z" .. a}
	},
}

m["lu"] = {
	"Luba-Katanga",
	36157,
	"bnt-lub",
	Latn,
}

m["lv"] = {
	"ลัตเวีย",
	9078,
	"bat",
	Latn,
	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 = {"([Ee])" .. CEDILLA, "[" .. GRAVE .. CIRC .. TILDE .."]", "([aAeEiIoOuU])" .. TILDE .."?([lrnmuiLRNMUI])" .. TILDE .. "?([^aAeEiIoOuU])", "([aAeEiIoOuU])" .. TILDE .."?([lrnmuiLRNMUI])" .. TILDE .."?$", "([iI])" .. TILDE .. "?([eE])" .. TILDE .. "?", "([aAeEiIuU])" .. TILDE, TILDE},
		to   = {"%1", TILDE, "%1%2%3", "%1%2", "%1%2", "%1" .. MACRON}
	},
	sort_key = {
		from = {"ā", "č", "ē", "ģ", "ī", "ķ", "ļ", "ņ", "š", "ū", "ž"},
		to = {"a" .. a, "c" .. a, "e" .. a, "g" .. a, "i" .. a, "k" .. a, "l" .. a, "n" .. a, "s" .. a, "u" .. a, "z" .. a}
	},
}

m["mg"] = {
	"มาลากาซี",
	7930,
	"poz-bre",
	Latn,
}

m["mh"] = {
	"มาร์แชลล์",
	36280,
	"poz-mic",
	Latn,
	sort_key = {
		from = {"ā", "ļ", "m̧", "ņ", "n̄", "o̧", "ō", "ū"},
		to = {"a" .. a, "l" .. a, "m" .. a, "n" .. a, "n" .. b, "o" .. a, "o" .. b, "u" .. a}
	},
}

m["mi"] = {
	"มาวรี",
	36451,
	"poz-pep",
	Latn,
	sort_key = {
		remove_diacritics = MACRON,
		from = {"ng", "wh"},
		to = {"z" .. a, "z" .. b}
	},
}

m["mk"] = {
	"มาซิโดเนีย",
	9296,
	"zls",
	Cyrl,
	translit_module = "mk-translit",
	entry_name = {
		remove_diacritics = ACUTE,
		remove_exceptions = {"Ѓ", "ѓ", "Ќ", "ќ"}
	},
	sort_key = {
		remove_diacritics = GRAVE,
		from = {"ѓ", "ѕ", "ј", "љ", "њ", "ќ", "џ"},
		to = {"д" .. a, "з" .. a, "и" .. a, "л" .. a, "н" .. a, "т" .. a, "ч" .. a}
	},
}

m["ml"] = {
	"มลยาฬัม",
	36236,
	"dra",
	{"Mlym"},
	translit_module = "Mlym-translit",
	override_translit = true,
}

m["mn"] = {
	"มองโกเลีย",
	9246,
	"xgn",
	{"Cyrl", "Mong", "Latn"},
	ancestors = {"cmg"},
	translit_module = "mn-translit",
	override_translit = true,
	entry_name = {remove_diacritics = GRAVE .. ACUTE},
	sort_key = {
		remove_diacritics = GRAVE,
		from = {"ё", "ө", "ү"},
		to = {"е" .. a, "о" .. a, "у" .. a}
	},
	standardChars = "A-PR-UX-Za-pr-ux-zÇÖÜçöüŞşƟƵƶɵЁА-ШЫ-шы-яёҮүӨө—᠊-᠙ᠠ-ᡂ" .. PUNCTUATION,
}

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

m["mr"] = {
	"มราฐี",
	1571,
	"inc-sou",
	{"Deva", "Modi"},
	ancestors = {"omr"},
	--translit_module = "translit-redirect",
	entry_name = {
		from = {"च़", "ज़", "झ़"},
		to   = {"च", "ज", "झ"}
	},
}

m["ms"] = {
	"มาเลเซีย",
	9237,
	"poz-mly",
	{"Latn", "ms-Arab"},
}

m["mt"] = {
	"มอลตา",
	9166,
	"sem-arb",
	Latn,
	ancestors = {"sqr"},
	sort_key = {
		from = {
			"ċ", "ġ", "ż", -- Convert into PUA so that decomposed form does not get caught by the next step.
			"([cgz])", -- Ensure "c" comes after "ċ", "g" comes after "ġ" and "z" comes after "ż".
			"g" .. a .. "ħ", -- After initial conversion of "g".
			c, d, "ħ", "ie", e -- Convert into final output.
		},
		to = {
			c, d, e,
			"%1" .. a,
			"g" .. b,
			"c", "g", "h" .. a, "i" .. a, "z"
		}
	},
}

m["my"] = {
	"พม่า",
	9228,
	"tbq-brm",
	{"Mymr"},
	ancestors = {"obr"},
	translit_module = "my-translit",
	override_translit = true,
	sort_key = {
		from = {"ျ", "ြ", "ွ", "ှ", "ဿ"},
		to   = {"္ယ", "္ရ", "္ဝ", "္ဟ", "သ္သ"}
	},
}

m["na"] = {
	"นาอูรู",
	13307,
	"poz-mic",
	Latn,
}

m["nb"] = {
	"นอร์เวย์แบบบุ๊กมอล",
	25167,
	"gmq",
	Latn,
	ancestors = {"gmq-mno"},
	sort_key = "no-sortkey",
	wikimedia_codes = {"no"},
}

m["nd"] = {
	"Northern Ndebele",
	35613,
	"bnt-ngu",
	Latn,
	entry_name = {remove_diacritics = GRAVE .. ACUTE .. CIRC .. MACRON .. CARON},
}

m["ne"] = {
	"เนปาล",
	33823,
	"inc-pah",
	{"Deva", "Newa"},
	translit_module = "Deva-translit",
}

m["ng"] = {
	"Ndonga",
	33900,
	"bnt-ova",
	Latn,
}

m["nl"] = {
	"ดัตช์",
	7411,
	"gmw",
	Latn,
	ancestors = {"dum"},
	sort_key = {remove_diacritics = GRAVE .. ACUTE .. CIRC .. TILDE .. DIAER .. RINGABOVE .. CEDILLA .. "'"},
	standardChars = "A-Za-z0-9" .. PUNCTUATION .. u(0x2800) .. "-" .. u(0x28FF),
}

m["nn"] = {
	"นอร์เวย์แบบนือนอสก์",
	25164,
	"gmq",
	Latn,
	ancestors = {"gmq-mno"},
	sort_key = "no-sortkey",
}

m["no"] = {
	"นอร์เวย์",
	9043,
	"gmq",
	Latn,
	ancestors = {"gmq-mno"},
	sort_key = "no-sortkey",
}

m["nr"] = {
	"Southern Ndebele",
	36785,
	"bnt-ngu",
	Latn,
	entry_name = {remove_diacritics = GRAVE .. ACUTE .. CIRC .. MACRON .. CARON},
}

m["nv"] = {
	"นาวาโฮ",
	13310,
	"apa",
	Latn,
	sort_key = {
		remove_diacritics = ACUTE .. OGONEK,
		from = {
			"chʼ", "tłʼ", "tsʼ", -- 3 chars
			"ch", "dl", "dz", "gh", "hw", "kʼ", "kw", "sh", "tł", "ts", "zh", -- 2 chars
			"ł", "ʼ" -- 1 char
		},
		to = {
			"c" .. b, "t" .. b, "t" .. d,
			"c" .. a, "d" .. a, "d" .. b, "g" .. a, "h" .. a, "k" .. a, "k" .. b, "s" .. a, "t" .. a, "t" .. c, "z" .. a,
			"l" .. a, "z" .. b
		}
	},
}

m["ny"] = {
	"เชวา",
	33273,
	"bnt-nys",
	Latn,
	entry_name = {remove_diacritics = ACUTE .. CIRC},
	sort_key = {
		from = {"ng'"},
		to = {"ng"}
	},
}

m["oc"] = {
	"อุตซิตา",
	14185,
	"roa-ocr",
	{"Latn", "Hebr"},
	ancestors = {"pro"},
	sort_key = {
		remove_diacritics = GRAVE .. ACUTE .. DIAER .. CEDILLA,
		from = {"([lns])·h"},
		to = {"%1h"}
	},
}

m["oj"] = {
	"โอจิบเว",
	33875,
	"alg",
	CansLatn,
	sort_key = {
		from = {"aa", "ʼ", "ii", "oo", "sh", "zh"},
		to = {"a" .. a, "h" .. a, "i" .. a, "o" .. a, "s" .. a, "z" .. a}
	},
}

m["om"] = {
	"ออโรโม",
	33864,
	"cus-eas",
	{"Latn", "Ethi"},
}

m["or"] = {
	"โอริยา",
	33810,
	"inc-eas",
	{"Orya"},
	ancestors = {"inc-mor"},
	translit_module = "Orya-translit",
}

m["os"] = {
	"ออสซีเซีย",
	33968,
	"xsc",
	CyrlGeorLatn,
	ancestors = {"oos"},
	translit_module = "os-translit",
	override_translit = true,
	entry_name = {remove_diacritics = GRAVE .. ACUTE},
	sort_key = {
		from = {"ӕ", "гъ", "дж", "дз", "ё", "къ", "пъ", "тъ", "хъ", "цъ", "чъ"},
		to = {"а" .. a, "г" .. a, "д" .. a, "д" .. b, "е" .. a, "к" .. a, "п" .. a, "т" .. a, "х" .. a, "ц" .. a, "ч" .. a}
	},
}

m["pa"] = {
	"ปัญจาบ",
	58635,
	"inc-pan",
	{"Guru", "pa-Arab"},
	ancestors = {"inc-opa"},
	translit_module = "translit-redirect",
	entry_name = {
		remove_diacritics = FATHATAN .. DAMMATAN .. KASRATAN .. FATHA .. DAMMA .. KASRA .. SHADDA .. SUKUN .. NUNGHUNNA,
		from = {u(0x0768), u(0x08C7)},
		to   = {"ن", "ل"}
	},
}

m["pi"] = {
	"บาลี",
	36727,
	"inc-mid",
	{"Thai", "Brah", "Deva", "Beng", "Sinh", "Mymr", "Lana", "Laoo", "Khmr", "Latn"},
	ancestors = {"sa"},
	translit_module = "translit-redirect",
	entry_name = {
		from = {"ึ", u(0xF700), u(0xF70F), u(0xFE00)},
		to   = {"ิํ", "ฐ", "ญ"}
	},
	sort_key = {
		from = {"ā", "ī", "ū", "ḍ", "ḷ", "[ṁṃ]", "ṅ", "ñ", "ṇ", "ṭ", "ᩔ", "ᩕ", "ᩖ", "ᩘ", "([ᨭ-ᨱ])ᩛ", "([ᨷ-ᨾ])ᩛ", "ᩤ", u(0xFE00), u(0x200D)},
		to   = {"a�", "i�", "u�", "d�", "l�", "m�", "n�", "n��", "n���", "t�", "ᩈ᩠ᩈ", "᩠ᩁ", "᩠ᩃ", "ᨦ᩠", "%1᩠ᨮ", "%1᩠ᨻ", "ᩣ"}
	},
}

m["pl"] = {
	"โปแลนด์",
	809,
	"zlw-lch",
	Latn,
	ancestors = {"zlw-opl"},
	sort_key = {
		from = {"ą", "ć", "ę", "ł", "ń", "ó", "ś", "ź", "ż"},
		to = {"a" .. a, "c" .. a, "e" .. a, "l" .. a, "n" .. a, "o" .. a, "s" .. a, "z" .. a, "z" .. b}
	},
}

m["ps"] = {
	"ปาทาน",
	58680,
	"ira-pat",
	{"ps-Arab"},
}

m["pt"] = {
	"โปรตุเกส",
	5146,
	"roa-ibe",
	LatnBrai,
	ancestors = {"roa-opt"},
	sort_key = {remove_diacritics = GRAVE .. ACUTE .. CIRC .. TILDE .. DIAER .. CEDILLA},
}

m["qu"] = {
	"เกชัว",
	5218,
	"qwe",
	Latn,
}

m["rm"] = {
	"โรมานช์",
	13199,
	"roa-rhe",
	Latn,
}

m["ro"] = {
	"โรมาเนีย",
	7913,
	"roa-eas",
	{"Latn", "Cyrl"},
	sort_key = {
		from = {
			"ă", "â", "î", "ș", "ț", -- Latin
			"ӂ" -- Cyrillic
		},
		to = {
			"a" .. a, "a" .. b, "i" .. a, "s" .. a, "t" .. a,
			"ж" .. a
		}
	},
}

m["ru"] = {
	"รัสเซีย",
	7737,
	"zle",
	{"Cyrl", "Brai"},
	translit_module = "ru-translit-Thai",
	entry_name = {
		remove_diacritics = GRAVE .. ACUTE .. DIAER,
		remove_exceptions = {"Ё", "ё"}
	},
	sort_key = {
		from = {"ё", "і", "ѣ", "ѳ", "ѵ"},
		to = {"е" .. a, "и" .. a, "ь" .. a, "я" .. a, "я" .. b}
	},
	standardChars = "ЁА-яё0-9—" .. PUNCTUATION,
}

m["rw"] = {
	"Rwanda-Rundi",
	3217514,
	"bnt-glb",
	Latn,
	entry_name = {remove_diacritics = ACUTE .. CIRC .. MACRON .. CARON},
}

m["sa"] = {
	"สันสกฤต",
	11059,
	"inc-old",
	{"Deva", "Bali", "as-Beng", "Beng", "Bhks", "Brah", "Gran", "Gujr", "Guru", "Hani", "Java", "Kawi", "Khar", "Khmr", "Knda", "Lana", "Laoo", "Marc", "Mlym", "Modi", "Mong", "mnc-Mong", "xwo-Mong", "Mymr", "Nand", "Newa", "Orya", "Phag", "Ranj", "Saur", "Shrd", "Sidd", "Sinh", "Taml", "Tang", "Telu", "Thai", "Tibt", "Tirh"},
	translit_module = "translit-redirect",
	entry_name = {
		from = {"ึ", u(0xF700), u(0xF70F), "ༀ", "༌", "།།", "༚༚", "༚༝", "༝༚", "༝༝", "ཷ", "ཹ", "ེེ", "ོོ", u(0xFE00)},
		to   = {"ิํ", "ฐ", "ญ", "ཨོཾ", "་", "༎", "༛", "༟", "࿎", "༞", "ྲཱྀ", "ླཱྀ", "ཻ", "ཽ"}
	},
	sort_key = {
		from = {"ā", "ī", "ū", "ḍ", "ḷ", "ḹ", "[ṁṃ]", "ṅ", "ñ", "ṇ", "ṛ", "ṝ", "ś", "ṣ", "ṭ", "ᩔ", "ᩕ", "ᩖ", "ᩘ", "([ᨭ-ᨱ])ᩛ", "([ᨷ-ᨾ])ᩛ", "ᩤ", u(0xFE00), u(0x200D)},
		to   = {"a�", "i�", "u�", "d�", "l�", "l��", "m�", "n�", "n��", "n���", "r�", "r��", "s�", "s��", "t�", "ᩈ᩠ᩈ", "᩠ᩁ", "᩠ᩃ", "ᨦ᩠", "%1᩠ᨮ", "%1᩠ᨻ", "ᩣ"}
	},
}

m["sc"] = {
	"ซาร์ดิเนีย",
	33976,
	"roa",
	Latn,
}

m["sd"] = {
	"สินธ์",
	33997,
	"inc-snd",
	{"sd-Arab", "Deva", "Sind", "Khoj"},
	--translit_module = "translit-redirect",
	entry_name = {
		remove_diacritics = KASHIDA .. FATHATAN .. DAMMATAN .. KASRATAN .. FATHA .. DAMMA .. KASRA .. SHADDA .. SUKUN .. SUPERALEF,
		from = {u(0x0671)},
		to   = {u(0x0627)}
	},
	ancestors = {"inc-vra"},
}

m["se"] = {
	"ซามีเหนือ",
	33947,
	"smi",
	Latn,
	entry_name = {remove_diacritics = MACRON .. DOTBELOW .. "ˈ"},
	sort_key = {
		from = {"á", "č", "đ", "ŋ", "š", "ŧ", "ž"},
		to = {"a" .. a, "c" .. a, "d" .. a, "n" .. a, "s" .. a, "t" .. a, "z" .. a}
	},
	standardChars = "A-PR-VZa-pr-vz0-9ÁáČčĐđŊŋŠšŦŧŽž" .. PUNCTUATION,
}

m["sg"] = {
	"Sango",
	33954,
	"crp",
	Latn,
	ancestors = {"ngb"},
}

m["sh"] = {
	"เซอร์โบ-โครเอเชีย",
	9301,
	"zls",
	{"Latn", "Cyrl", "Glag"},
	entry_name = {
		remove_diacritics = GRAVE .. ACUTE .. TILDE .. MACRON .. DGRAVE .. INVBREVE,
		remove_exceptions = {"Ć", "ć", "З́", "з́", "С́", "с́"} -- Latin Ć and Cyrillic С́
	},
	sort_key = {
		from = {
			"č", "ć", "dž", "đ", "lj", "nj", "š", "ś", "ž", "ź", -- Latin
			"ђ", "з́", "ј", "љ", "њ", "с́", "ћ", "џ" -- Cyrillic
		},
		to = {
			"c" .. a, "c" .. b, "d" .. a, "d" .. b, "l" .. a, "n" .. a, "s" .. a, "s" .. b, "z" .. a, "z" .. b,
			"д" .. a, "з" .. a, "и" .. a, "л" .. a, "н" .. a, "с" .. a, "т" .. a, "ч" .. a
		}
	},
	wikimedia_codes = {"sh", "bs", "hr", "sr"},
}

m["si"] = {
	"สิงหล",
	13267,
	"inc-ins",
	{"Sinh"},
	ancestors = {"elu-prk"},
	translit_module = "Sinh-translit",
	override_translit = true,
}

m["sk"] = {
	"สโลวัก",
	9058,
	"zlw",
	Latn,
	sort_key = {remove_diacritics = ACUTE .. CIRC .. DIAER},
}

m["sl"] = {
	"สโลวีเนีย",
	9063,
	"zls",
	Latn,
	entry_name = {
		remove_diacritics = GRAVE .. ACUTE .. CIRC .. MACRON .. DGRAVE .. INVBREVE .. DOTBELOW,
		from = {"Ə", "ə", "Ł", "ł"},
		to   = {"E", "e", "L", "l"}
	},
	sort_key = {
		remove_diacritics = TILDE .. DOTABOVE .. DIAER .. RINGABOVE .. RINGBELOW .. OGONEK,
		from = {"č", "š", "ž"},
		to = {"c" .. a, "s" .. a, "z" .. a}
	},
}

m["sm"] = {
	"ซามัว",
	34011,
	"poz-pnp",
	Latn,
}

m["sn"] = {
	"โชนา",
	34004,
	"bnt-sho",
	Latn,
	entry_name = {remove_diacritics = ACUTE},
}

m["so"] = {
	"โซมาลี",
	13275,
	"cus-eas",
	{"Latn", "Arab", "Osma"},
	entry_name = {remove_diacritics = GRAVE .. ACUTE .. CIRC},
}

m["sq"] = {
	"แอลเบเนีย",
	8748,
	"sqj",
	{"Latn", "Grek", "Elba"},
	entry_name = {remove_diacritics = ACUTE},
	sort_key = {remove_diacritics = CIRC .. TILDE .. DIAER .. CEDILLA},
}

m["ss"] = {
	"Swazi",
	34014,
	"bnt-ngu",
	Latn,
	entry_name = {remove_diacritics = GRAVE .. ACUTE .. CIRC .. MACRON .. CARON},
}

m["st"] = {
	"ซูทู",
	34340,
	"bnt-sts",
	Latn,
	entry_name = {remove_diacritics = GRAVE .. ACUTE .. CIRC .. MACRON .. CARON},
}

m["su"] = {
	"ซุนดา",
	34002,
	"poz-msa",
	{"Latn", "Sund"},
	ancestors = {"osn"},
	translit_module = "su-translit",
}

m["sv"] = {
	"สวีเดน",
	9027,
	"gmq",
	Latn,
	ancestors = {"gmq-osw"},
}

m["sw"] = {
	"สวาฮีลี",
	7838,
	"bnt-swh",
	LatnArab,
	sort_key = {
		from = {"ng'"},
		to = {"ng" .. a}
	},
}

m["ta"] = {
	"ทมิฬ",
	5885,
	"dra",
	{"Taml"},
	ancestors = {"oty"},
	translit_module = "Taml-translit",
	override_translit = true,
}

m["te"] = {
	"เตลูกู",
	8097,
	"dra",
	{"Telu"},
	translit_module = "Telu-translit",
	override_translit = true,
}

m["tg"] = {
	"ทาจิก",
	9260,
	"ira-swi",
	{"Cyrl", "fa-Arab", "Latn"},
	ancestors = {"pal"}, -- same as "fa", see WT:T:AFA
	translit_module = "tg-translit",
	override_translit = true,
	entry_name = {remove_diacritics = GRAVE .. ACUTE},
	sort_key = {
		from = {"ғ", "ё", "ӣ", "қ", "ӯ", "ҳ", "ҷ"},
		to = {"г" .. a, "е" .. a, "и" .. a, "к" .. a, "у" .. a, "х" .. a, "ч" .. a}
	},
}

m["th"] = {
	"ไทย",
	9217,
	"tai-swe",
	{"Thai", "Brai"},
	--translit_module = "th-translit", !never use this line!
	--sort_key = "Thai-sortkey",
}

m["ti"] = {
	"ตึกรึญญา",
	34124,
	"sem-eth",
	Ethi,
	translit_module = "Ethi-translit",
}

m["tk"] = {
	"เติร์กเมน",
	9267,
	"trk-ogz",
	{"Latn", "Cyrl", "Arab"},
	entry_name = {remove_diacritics = MACRON},
	sort_key = {
		from = {
			"ç", "ä", "ž", "ň", "ö", "ş", "ü", "ý", -- Latin
			"ё", "җ", "ң", "ө", "ү", "ә" -- Cyrillic
		},
		to = {
			"c" .. a, "e" .. a, "j" .. a, "n" .. a, "o" .. a, "s" .. a, "u" .. a, "y" .. a,
			"е" .. a, "ж" .. a, "н" .. a, "о" .. a, "у" .. a, "э" .. a
		}
	},
}

m["tl"] = {
	"ตากาล็อก",
	34057,
	"phi",
	{"Latn", "Tglg"},
	--translit_module = "tl-translit",
	override_translit = true,
	entry_name = {remove_diacritics = GRAVE .. ACUTE .. CIRC},
}

m["tn"] = {
	"สวานา",
	34137,
	"bnt-sts",
	Latn,
}

m["to"] = {
	"ตองงา",
	34094,
	"poz-pol",
	Latn,
	entry_name = {remove_diacritics = ACUTE},
	sort_key = {remove_diacritics = MACRON},
}

m["tr"] = {
	"ตุรกี",
	256,
	"trk-ogz",
	Latn,
	ancestors = {"ota"},
	dotted_dotless_i = true,
	sort_key = {
		from = {
			"i", -- Ensure "i" comes after "ı".
			"ç", "ğ", "ı", "ö", "ş", "ü"
		},
		to = {
			"i" .. a,
			"c" .. a, "g" .. a, "i", "o" .. a, "s" .. a, "u" .. a
		}
	},
}

m["ts"] = {
	"Tsonga",
	34327,
	"bnt-tsr",
	Latn,
}

m["tt"] = {
	"ตาตาร์",
	25285,
	"trk-kbu",
	{"Cyrl", "Latn", "tt-Arab"},
	translit_module = "tt-translit",
	override_translit = true,
	dotted_dotless_i = true,
	sort_key = {
		from = {
			"i", -- Ensure "i" comes after "ı".
			"ä", "ə", "ç", "ğ", "ı", "ñ", "ŋ", "ö", "ɵ", "ş", "ü", -- Latin
			"ә", "ў", "ғ", "ё", "җ", "қ", "ң", "ө", "ү", "һ" -- Cyrillic
		},
		to = {
			"i" .. a,
			"a" .. a, "a" .. b, "c" .. a, "g" .. a, "i", "n" .. a, "n" .. b, "o" .. a, "o" .. b, "s" .. a, "u" .. a,
			"а" .. a, "в" .. a, "г" .. a, "е" .. a, "ж" .. a, "к" .. a, "н" .. a, "о" .. a, "у" .. a, "х" .. a
		}
	},
}

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

m["ty"] = {
	"ตาฮีตี",
	34128,
	"poz-pep",
	Latn,
}

m["ug"] = {
	"อุยกูร์",
	13263,
	"trk-kar",
	{"ug-Arab", "Latn", "Cyrl"},
	ancestors = {"chg"},
	translit_module = "ug-translit-Thai",
	override_translit = true,
}

m["uk"] = {
	"ยูเครน",
	8798,
	"zle",
	Cyrl,
	ancestors = {"zle-ort"},
	translit_module = "uk-translit-Thai",
	entry_name = {remove_diacritics = GRAVE .. ACUTE},
	sort_key = {
		from = {"ґ", "є", "і", "ї"},
		to = {"г" .. a, "е" .. a, "и" .. a, "и" .. b}
	},
	standardChars = "ЄІЇА-ЩЬЮ-щьюяєії" .. PUNCTUATION,
}

m["ur"] = {
	"อูรดู",
	1617,
	"inc-hnd",
	{"ur-Arab"},
	ancestors = {"inc-ohi"},
	entry_name = {remove_diacritics = KASHIDA .. FATHATAN .. DAMMATAN .. KASRATAN .. FATHA .. DAMMA .. KASRA .. SHADDA .. SUKUN .. NUNGHUNNA},
	-- put Judeo-Urdu (Hebrew-script Urdu) under the category header
	-- U+FB21 HEBREW LETTER WIDE ALEF so that it sorts after Arabic script titles
	sort_key = {
		from = {"^%f[" .. u(0x5D0) .. "-" .. u(0x5EA) .. "]"},
		to   = {u(0xFB21)},
	},
}

m["uz"] = {
	"อุซเบก",
	9264,
	"trk-kar",
	LatnCyrlfaArab,
	ancestors = {"chg"},
	--translit_module = "uz-translit",
	sort_key = {
		from = {
			"oʻ", "gʻ", "sh", "ch", "ng", -- Latin
			"ё", "ў", "қ", "ғ", "ҳ" -- Cyrillic
		},
		to = {
			"z" .. a, "z" .. b, "z" .. c, "z" .. d, "z" .. e,
			"е" .. a, "я" .. a, "я" .. b, "я" .. c, "я" .. d
		}
	},
}

m["ve"] = {
	"เวนดา",
	32704,
	"bnt-bso",
	Latn,
}

m["vi"] = {
	"เวียดนาม",
	9199,
	"mkh-vie",
	LatnHani,
	ancestors = {"mkh-mvi"},
	translit_module = "vi-translit",
	sort_key = "vi-sortkey",
}

m["vo"] = {
	"โวลาปุก",
	36986,
	"art",
	Latn,
}

m["wa"] = {
	"วัลลูน",
	34219,
	"roa-oil",
	Latn,
	ancestors = {"fro"},
	sort_key = "fr-sortkey",
}

m["wo"] = {
	"โวลอฟ",
	34257,
	"alv-fwo",
	LatnArab,
}

m["xh"] = {
	"โคซา",
	13218,
	"bnt-ngu",
	Latn,
	entry_name = {remove_diacritics = GRAVE .. ACUTE .. CIRC .. MACRON .. CARON},
}

m["yi"] = {
	"ยิดดิช",
	8641,
	"gmw",
	{"Hebr"},
	ancestors = {"gmh"},
	translit_module = "yi-translit",
	sort_key = {
		from = {"א[ַָ]", "בּ", "ו[ֹּ]", "יִ", "ײַ", "פֿ"},
		to = {"א", "ב", "ו", "י", "יי", "פ"}
	},
}

m["yo"] = {
	"โยรูบา",
	34311,
	"alv-yor",
	LatnArab,
	entry_name = {remove_diacritics = GRAVE .. ACUTE .. MACRON},
	sort_key = {
		from = {"ẹ", "gb", "ọ", "ṣ"},
		to = {"e" .. a, "g" .. a, "o" .. a, "s" .. a}
	},
}

m["za"] = {
	"จ้วง",
	13216,
	"tai",
	LatnHani,
	sort_key = "za-sortkey",
}

m["zh"] = {
	"จีน",
	7850,
	"zhx",
	{"Hant", "Hans", "Hani", "Latn", "Brai", "Nshu"},
	ancestors = {"ltc"},
	sort_key = "zh-sortkey",
}

m["zu"] = {
	"ซูลู",
	10179,
	"bnt-ngu",
	Latn,
	entry_name = {remove_diacritics = GRAVE .. ACUTE .. CIRC .. MACRON .. CARON},
}

return m