Module:R:DGE

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

This module implements {{R:DGE}}.


local get_lang = require("Module:languages").getByCode
local process_params = require("Module:parameters").process
local tag_text = require("Module:script utilities").tag_text
local uri_encode = mw.uri.encode

local export = {}

function export.create(frame)
	local args = process_params(frame:getParent().args, {
		 = true,
		 = true,
	})
	
	local target = args or mw.loadData("Module:headword/data").pagename
	
	return (" in the '']'' en línea (2006–%s)"):format(
		uri_encode(target, "PATH"),
		tag_text(args or target, get_lang("grc")),
		os.date("%Y")
	)
end
 
return export