Modul:R:The Bokmål and Nynorsk dictionaries

Üdvözlöm, Ön a Modul:R:The Bokmål and Nynorsk dictionaries szó jelentését keresi. A DICTIOUS-ban nem csak a Modul:R:The Bokmål and Nynorsk dictionaries szó összes szótári jelentését megtalálod, hanem megismerheted az etimológiáját, a jellemzőit és azt is, hogyan kell a Modul:R:The Bokmål and Nynorsk dictionaries szót egyes és többes számban mondani. Minden, amit a Modul:R:The Bokmål and Nynorsk dictionaries szóról tudni kell, itt található. A Modul:R:The Bokmål and Nynorsk dictionaries szó meghatározása segít abban, hogy pontosabban és helyesebben fogalmazz, amikor beszélsz vagy írsz. AModul:R:The Bokmål and Nynorsk dictionaries és más szavak definíciójának ismerete gazdagítja a szókincsedet, és több és jobb nyelvi forráshoz juttat.

A modult a Modul:R:The Bokmål and Nynorsk dictionaries/doc lapon tudod dokumentálni

local p = {}
 
function p.main(frame)
    local PAGENAME = mw.title.getCurrentTitle().text
    
    local templateLang = frame.args
    local args = frame:getParent().args
    
    local lang
    
    if templateLang and templateLang ~= '' then
    	lang = templateLang
    else
	    if args then
	        lang = args
	    else
	        lang = 'no'
	    end
    end
    
    if lang == 'nb' then
        specifier = 'bm'
        specifier2 = "''The Bokmål Dictionary''"
    elseif lang == 'nn'  then
        specifier = 'nn'
        specifier2 = "''The Nynorsk Dictionary''"
    elseif lang == 'no' then
        specifier = 'bm,nn'
        specifier2 = "''The Bokmål Dictionary'' / ''The Nynorsk Dictionary''"
    end
    
    target = args or PAGENAME
        
    template = "[https://ordbokene.no/" .. specifier .. "/search?q=" .. target  ..
    " " .. target .. "] - " .. specifier2 .. "."
    return template
end
 
return p