Module:Grammar/Conjugate: Difference between revisions

From Caves of Qud Wiki
Jump to navigation Jump to search
(add 'were' -> 'was')
mNo edit summary
Line 2: Line 2:


function p.pluralize(str, apostrophe)
function p.pluralize(str, apostrophe)
apostrophe = apostrophe or ''
  apostrophe = apostrophe or ''
local irregularplurals = {}
  local irregularplurals = {
 
    man = 'men'
if (str:sub(-1) == 's') then
  }
        return (str .. apostrophe)  --return unmodified (ends with 's', like 'boots', so we shouldn't append another 's')
  if irregularplurals[str] ~= nil then
    elseif (string.sub(str, -1) == 'y') and apostrophe == '' then
    return irregularplurals[str]
        return (string.sub(str, 1, -2) ..  'ies')
  elseif (str:sub(-1) == 's') then
    elseif (str:sub(-1) == 'z' or str:sub(-2) == 'ch' or str:sub(-2) == 'sh' or str:sub(-1) == 'x') and apostrophe == '' then
    return (str .. apostrophe)  --return unmodified (ends with 's', like 'boots', so we shouldn't append another 's')
        return (str ..  'es')
  elseif (string.sub(str, -1) == 'y') and apostrophe == '' then
    else
    return (string.sub(str, 1, -2) ..  'ies')
        return (str.. apostrophe .. 's')
  elseif (str:sub(-1) == 'z' or str:sub(-2) == 'ch' or str:sub(-2) == 'sh' or str:sub(-1) == 'x') and apostrophe == '' then
    end
    return (str ..  'es')
  else
    return (str.. apostrophe .. 's')
  end
end
end



Revision as of 22:36, 2 September 2020


local p = {}

function p.pluralize(str, apostrophe)
  apostrophe = apostrophe or ''
  local irregularplurals = {
    man = 'men'
  }
  if irregularplurals[str] ~= nil then
    return irregularplurals[str]
  elseif (str:sub(-1) == 's') then
    return (str .. apostrophe)   --return unmodified (ends with 's', like 'boots', so we shouldn't append another 's')
  elseif (string.sub(str, -1) == 'y') and apostrophe == '' then
    return (string.sub(str, 1, -2) ..  'ies')
  elseif (str:sub(-1) == 'z' or str:sub(-2) == 'ch' or str:sub(-2) == 'sh' or str:sub(-1) == 'x') and apostrophe == '' then
    return (str ..  'es')
  else
    return (str.. apostrophe .. 's')
  end
end

function p.make_possessive(string)
  return p.pluralize(string, "'")
end

function p.singularverb(string)
  --[ Assumes the input string is already a plural verb.]
  local irregularsingulars = {
     ["are"] = 'is',
     ["were"] = 'was',
     ["have"] = 'has',
     ["'re"] = "'s",
     ["don't"] = "doesn't",
     ["'ve"] = "'s"
  }
  local result = irregularsingulars[string]
  if result ~= nil and result ~= '' then
    return result
  else
    return string .. "s"
  end
end

return p