Modul:Genitiv
Formål
Denne modulen returnerer et ord i riktig genitivsform, avhengig av hvilken bokstav ordet slutter på. Se Mal:Genitiv for nærmere dokumentasjon.
Funksjoner
genitiv
: Brukes i {{genitiv}}_genitiv
: For bruk i andre moduler.
Brukes av
local p = {} function p.genitiv(frame) local ord = frame.args[1] if ord == nil then ord = frame:getParent().args[1] end if ord == nil then return "<strong class='error'>Malen «genitiv» må ha ett argument</strong>" end local status, str = pcall(function() return p._genitiv(ord) end) if status == true then return str end return ord end function p._genitiv(ord) local sv = "sxzşŝșšśßžżź" local sb = mw.ustring.toNFC(mw.ustring.lower(mw.ustring.sub(ord, -1))) if mw.ustring.find(sb, '%W') then return ord .. " sin" end if mw.ustring.find(sv, sb, nil, true) then return ord .. "ʼ" -- modifier letter apostrophe else return ord .. "s" end end return p