Module:User:ZxxZxxZ/2

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

This is a private module sandbox of ZxxZxxZ, for his own experimentation. Items in this module may be added and removed at ZxxZxxZ's discretion; do not rely on this module's stability.


local export = {}
local common = require("Module:fa-common")
local bs_stuff = require("Module:useful stuff")
local links = require("Module:User:ZxxZxxZ")
 
function export.main(frame)
    local pframe = frame:getParent()
    local args = pframe.args
    local word = mw.title.getCurrentTitle().text
    local tr = args; if tr == "" then tr = nil end
    local c = args
 
    local text = bs_stuff.tag_text(word, "fa", "strong", "fa-Arab")
 
    if tr  then
        text = text .. " (<span lang=\"\">" .. tr .. "</span>)"
    end
 
    if c == "+" then
        local comparative_word = word .. common.ZWNJ(word) .. "تر"
        local superlative_word = word .. common.ZWNJ(word) .. "ترین"
 
        text = text .. ", ''comparative'' "
        if tr then
             text = text .. links.annotated_link(comparative_word, nil, "fa", "span", "fa-Arab form-of comparative-form-of lang-fa transliteration-{{anchorencode:" .. tr .. "-tar}}", tr .. "-tar")
        else
             text = text .. links.annotated_link(comparative_word, nil, "fa", "span", "fa-Arab form-of comparative-form-of lang-fa")
        end
 
        text = text .. ", ''superlative'' "
        if tr then
             text = text .. links.annotated_link(superlative_word, nil, "fa", "span", "fa-Arab form-of superlative-form-of lang-fa transliteration-{{anchorencode:" .. tr .. "-tarin}}", tr .. "-tarin")
        else
             text = text .. links.annotated_link(superlative_word, nil, "fa", "span", "fa-Arab form-of superlative-form-of lang-fa")
        end
    end
 
    if mw.title.getCurrentTitle().nsText == "" then
        text = text .. "]"
    end
 
    return text
end
 
return export