--[=[
This module contains abbreviations of part-of-speech tags.
--]=]
local pos_tags = {
["a"] = "နာမဝိသေသန",
["adj"] = "နာမဝိသေသန",
["adv"] = "ကြိယာဝိသေသန",
["art"] = "မုက်လိက်",
["det"] = "အဃောပဝ်",
["cnum"] = "ဂၞန်သင်္ချာကာဒဳနယ်",
["conj"] = "ကောမ်",
["int"] = "interjection",
["intj"] = "interjection",
["n"] = "နာမ်",
["num"] = "ဂနန်",
["part"] = "ကပေါတ်ကြိယာ",
["pcl"] = "ခနိက်ခပဵု",
["pn"] = "နာမ်ထိုက်ကြိုက်",
["proper"] = "နာမ်ထိုက်ကြိုက်",
["postp"] = "postposition",
["pre"] = "ဝိဘတ်",
["prep"] = "ဝိဘတ်",
["pro"] = "သဗ္ဗနာမ်",
["pron"] = "သဗ္ဗနာမ်",
["onum"] = "ပွမဓမံက်ထ္ၜးဂၞန်သင်္ချာ",
["v"] = "ကြိယာ",
["vb"] = "ကြိယာ",
["vi"] = "intransitive verb",
["vt"] = "ပြံၚ်သၠာဲကြိယာ",
["vti"] = "transitive and intransitive verb",
}
return pos_tags
-- For Vim, so we get 4-space tabs
-- vim: set ts=4 sw=4 noet: