Module:Form of/pos: Difference between revisions
Jump to navigation
Jump to search
en>Erutuon m (Protected "Module:form of/pos": Highly visible template/module ([Edit=Allow only template editors and administrators] (indefinite) [Move=Allow only template editors and administrators] (indefinite))) |
m (1 revision imported) |
(No difference)
|
Latest revision as of 22:48, 5 September 2022
Documentation for this module may be created at Module:Form of/pos/doc
--[=[
This module contains abbreviations of part-of-speech tags.
--]=]
local pos_tags = {
["a"] = "adjective",
["adj"] = "adjective",
["adv"] = "adverb",
["art"] = "article",
["det"] = "determiner",
["cnum"] = "cardinal numeral",
["conj"] = "conjunction",
["int"] = "interjection",
["intj"] = "interjection",
["n"] = "noun",
["num"] = "numeral",
["part"] = "participle",
["pcl"] = "particle",
["pn"] = "proper noun",
["proper"] = "proper noun",
["postp"] = "postposition",
["pre"] = "preposition",
["prep"] = "preposition",
["pro"] = "pronoun",
["pron"] = "pronoun",
["onum"] = "ordinal numeral",
["v"] = "verb",
["vb"] = "verb",
["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: