မော်ဂျူး:form of/lang-data/en
Documentation for this module may be created at မော်ဂျူး:form of/lang-data/en/doc
--[=[
This module contains lang-specific tags for English.
]=]
local tags = {}
local shortcuts = {}
shortcuts["ed-form"] = {"spast", "နှင့်", "အတိတ်ကာလပြ", "part"}
shortcuts["ing-form"] = {"pres", "part", "နှင့်", "ger"}
shortcuts["s-verb-form"] = {"3", "s", "spres", "ind"}
shortcuts["st-form"] = {"2-st", "s", "spres", "ind"}
shortcuts["st-past-form"] = {"2-st", "s", "spast", "ind"}
shortcuts["th-form"] = {"3-th", "s", "spres", "ind"}
----------------------- Person -----------------------
-- These tags exist so we can add appropriate 'archaic FOO' labels in [[Module:form of/cats]].
tags["second-person (-st)"] = {
tag_type = "person",
display = "[[နောက်ဆက်တွဲ:ခက်ဆစ်#second person|second-person]]",
shortcuts = {"2-st"},
}
tags["third-person (-th)"] = {
tag_type = "person",
display = "[[နောက်ဆက်တွဲ:ခက်ဆစ်#third person|third-person]]",
shortcuts = {"3-th"},
}
----------------------- Create the shortcuts list -----------------------
for name, data in pairs(tags) do
if data.shortcuts then
for _, shortcut in ipairs(data.shortcuts) do
shortcuts[shortcut] = name
end
end
end
return {tags = tags, shortcuts = shortcuts}