Module:pa-noun-f-ī2

Hello, you have come here looking for the meaning of the word Module:pa-noun-f-ī2. In DICTIOUS you will not only get to know all the dictionary meanings for the word Module:pa-noun-f-ī2, but we will also tell you about its etymology, its characteristics and you will know how to say Module:pa-noun-f-ī2 in singular and plural. Everything you need to know about the word Module:pa-noun-f-ī2 you have here. The definition of the word Module:pa-noun-f-ī2 will help you to be more precise and correct when speaking or writing your texts. Knowing the definition ofModule:pa-noun-f-ī2, as well as those of other words, enriches your vocabulary and provides you with more and better linguistic resources.


local p = {}

function p.declension(frame)
    local title = mw.title.getCurrentTitle().text
    
    return frame:expandTemplate{
        title = "pa-decl-noun",
        args = {
            title,             -- direct singular
            title .. "ਆਂ",     -- direct plural
            title,             -- oblique singular
            title .. "ਆਂ",     -- oblique plural
            title .. "ਏ",      -- vocative singular
            title .. "ਓ",      -- vocative plural
            title .. "ਓਂ",     -- ablative singular
            title .. "ਆਂ",     -- ablative plural
            "—", "—", "—", "—"  -- other cases
        }
    }
end

return p