Module:form of/pos
Appearance
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 = {
["pnl"] = "panladawan",
["adj"] = "panladawan",
["adv"] = "adverbo",
["art"] = "artikulo",
["det"] = "determiner",
["cnum"] = "cardinal numeral",
["conj"] = "conjunction",
["int"] = "interjection",
["intj"] = "interjection",
["png"] = "pangngaran",
["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",
["ber"] = "berbo",
["b"] = "berbo",
["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: