A modult a Modul:form of/pos/doc lapon tudod dokumentálni

--[=[

This module contains abbreviations of part-of-speech tags.

--]=]

local pos_tags = {
	["a"] = "melléknév",
	["adj"] = "melléknév",
	["adv"] = "határozószó",
	["art"] = "névelő",
	["det"] = "determináns",
	["cnum"] = "tőszámnév",
	["conj"] = "kötőszó",
	["int"] = "interjection",
	["intj"] = "interjection",
	["n"] = "főnév",
	["num"] = "számnév",
	["part"] = "participle",
	["pcl"] = "partikula",
	["pn"] = "tulajdonnév",
	["proper"] = "proper noun",
	["postp"] = "postposition",
	["pre"] = "preposition",
	["prep"] = "preposition",
	["pro"] = "pronoun",
	["pron"] = "pronoun",
	["onum"] = "sorszámnév",
	["v"] = "ige",
	["vb"] = "ige",
	["vi"] = "intransitive verb",
	["vt"] = "transitive verb",
	["vti"] = "transitive and intransitive verb",
}

return pos_tags

-- For Vim, so we get 4-space tabs
-- vim: set ts=4 sw=4 noet: