Hopp til innhald

Modul:links/data

Frå Wiktionary - den frie ordboka

Dokumentasjon for modulen kan opprettast på Modul:links/data/dok

local data = {}

data.ignore_cap = {
	["ko"] = true,
}

data.phonetic_extraction = {
	["th"] = "Module:th",
	["km"] = "Module:km",
}

data.pos_tags = {
	["a"] = "adjective",
	["adv"] = "adverb",
	["int"] = "interjection",
	["n"] = "noun",
	["pron"] = "pronoun",
	["v"] = "verb",
	["vi"] = "intransitive verb",
	["vt"] = "transitive verb",
	["vti"] = "transitive and intransitive verb",
}

local u = mw.ustring.char
local soft_hyphen = u(0xAD)

--[[	The "actual title" is the page name with the prefix "Unsupported titles/" removed.
		["displayed_title"] = "actual title"	]]
data.unsupported_titles = {
	[" "] = "Space",
	["{"] = "Left curly bracket",
	["}"] = "Right curly bracket",
	["["] = "Left square bracket",
	["]"] = "Right square bracket",
	["<"] = "Less than",
	[">"] = "Greater than",
	["=<"] = "Equal less than",
	["=>"] = "Equal greater than",
	[">="] = "Greater than equal",
	["<="] = "Less than equal",
	["->"] = "Hyphen greater than",
	["<-"] = "Less than hyphen",
	[">_<"] = "Greater than low line less than",
	["::"] = "::",
	[": :"] = ": :",
	[":/"] = ":/",
	[":="] = ":=",
	[":("] = ":(",
	[":)"] = ":)",
	[":3"] = ":3",
	[":D"] = ":D",
	[":d"] = ":d",
	[":P"] = ":P",
	[":p"] = ":p",
	[":{"] = "Colon left curly bracket",
	[":Þ"] = ":Þ",
	[":þ"] = ":þ",
	["<>"] = "Less than greater than",
	["<3"] = "Less than three",
	["</3"] = "Less than slash three",
	["< >"] = "Enclosing less than greater than",
	["< />"] = "Less than trailing slash greater than",
	["< > </ >"] = "HTML start tag end tag",
	["<!-- -->"] = "HTML comment",
	["<g>"] = "g tag",
	[":-("] = ":-(",
	[":-)"] = ":-)",
	[":-/"] = ":-/",
	[":-D"] = ":-D",
	[":-P"] = ":-P",
	[":-p"] = ":-p",
	[":-{"] = "Colon hyphen left curly bracket",
	[":-Þ"] = ":-Þ",
	[":-þ"] = ":-þ",
	[":≠"] = ":≠",
	["|"] = "Vertical line",
	["||"] = "Vertical line vertical line",
	["| |"] = "Enclosing vertical lines",
	["C#"] = "C sharp",
	["#"] = "Number sign",
	["# #"] = "Enclosing number signs",
	["&amp;"] = "Amp",
	[":"] = ":",
	[".."] = "Double period",
	["."] = "Full stop",
	["_"] = "Low line",
	["-_-"] = "Low line interfix",
	[u(0xFFFD)] = "Replacement character",
	[u(0x1680)] = "Ogham space",
	["[ ]"] = "Square brackets",
	["{ }"] = "Curly brackets",
	["[…]"] = "Square bracketed ellipsis",
	["_ _"] = "Enclosing low lines",
	["C|N>K"] = "C through N to K",
	["#MeToo"] = "MeToo",
	["о/."] = "о slash dot",
	["กรุงเทพมหานคร อมรรัตนโกสินทร์ มหินทรายุธยา มหาดิลกภพ นพรัตนราชธานีบูรีรมย์ อุดมราชนิเวศน์มหาสถาน อมรพิมานอวตารสถิต สักกะทัตติยวิษณุกรรมประสิทธิ์"] = "Thai name of Bangkok",
	["λοπαδοτεμαχοσελαχογαλεοκρανιολειψανοδριμυποτριμματοσιλφιοκαραβομελιτοκατακεχυμενοκιχλ" .. soft_hyphen .. "επικοσσυφοφαττοπεριστεραλεκτρυονοπτοκεφαλλιοκιγκλοπελειολαγῳοσιραιοβαφητραγανοπτερύγων"] = "Ancient Greek dish",
	["S:t"] = "S:t",
	["S:ta"] = "S:ta",
	["S:t Michel"] = "S:t Michel",
	["c:a"] = "c:a",
	["eq #"] = "eq number sign",
	["hr #"] = "hr number sign",
	["n:a"] = "n:a",
	["n:o"] = "n:o",
	["n:r"] = "n:r",
	["s:a"] = "s:a",
	["st:a"] = "st:a",
	["v:a"] = "v:a",
}

return data