Module:ka-adj

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


local export = {}

function export.retErgative(arguments)
    word = arguments.args
    stem = arguments.args
    if mw.ustring.sub(word, -1) == ] then
        stem = mw.ustring.sub(word, 0, -2).."მა"
    end
    return stem
end

function export.retDative(arguments)
    word = arguments.args
    stem = arguments.args
    if mw.ustring.sub(word, -1) == ] then
        stem = mw.ustring.sub(word, 0, -2)
    end
    return stem
end

function export.retVocative(arguments)
    word = arguments.args
    stem = arguments.args
    if mw.ustring.sub(word, -1) == ] then
        stem = mw.ustring.sub(word, 0, -2).."ო"
    end
    return stem
end

return export