Module:Pronoun
Jump to navigation
Jump to search
Documentation for this module may be created at Module:Pronoun/doc
local p = {}
-- Determines if a verb should end in 'es' instead of just 's'
local function needsEsEnding(verb)
-- Verbs ending in o, ch, sh, ss, or x get 'es' in the third person singular
return verb:match("[oschx]$") or verb:match("sh$") or verb:match("ss$")
end
-- Adjusts the verb based on the pronoun and the verb tense, preserving original pronoun capitalization
local function adjustVerb(originalPronoun, verb)
local pronoun = originalPronoun:lower() -- Use a lowercase version for logic
-- Handle continuous tense (verbs ending in 'ing')
if verb:sub(-3) == "ing" then
if pronoun == "he" or pronoun == "she" or pronoun == "it" then
return originalPronoun .. " is " .. verb
elseif pronoun == "they" then
return originalPronoun .. " are " .. verb
end
else
-- Handle simple present tense for singular third-person
if pronoun == "he" or pronoun == "she" or pronoun == "it" then
if needsEsEnding(verb) then
verb = verb .. "es"
elseif not verb:match("s$") then -- Add 's' if it doesn't already end with one
verb = verb .. "s"
end
elseif pronoun == "they" and (verb:match("es$") or verb:match("s$")) then
verb = verb:sub(1, verb:match("es$") and -3 or -2) -- Remove 'es' or 's' appropriately
end
return originalPronoun .. " " .. verb
end
end
function p.main(frame)
local originalPronoun = frame.args[1]
local verb = frame.args[2]
return adjustVerb(originalPronoun, verb) -- Adjust the verb based on the pronoun and return the result
end
return p