Module:translations/data

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

This module needs documentation.
Please document this module by describing its purpose and usage on the documentation page.

local export = {}

local function lang_info(code)
	return require("Module:languages").getByCode(code):getCanonicalName() .. " (" .. code .. ")"
end

-- Mainspace languages not allowed in translation sections.
-- The value is the part of the error message given after "Translations not allowed in LANG. LANG translations should ...".
local disallowed = {}
disallowed = "be given as " .. lang_info("lzh") .. "."
disallowed = disallowed
-- disallowed = "be given as a specific lect. For Modern Standard Chinese, use " .. lang_info("cmn") .. "." -- To be enabled once all current instances have been converted.
export.disallowed = disallowed

export.interwiki_langs = {
	 = "fa",
	 = "fa",
	 = "ku",
	 = "ku",
	 = "nds",
	 = "nds",
	 = "nds",
	 = "fa",
	 = "ku",
}

-- languages needing superscripts in tr
export.need_super = {
	 = true,
	 = true,
	 = true,
	 = true,
	 = true,
	 = true,
	 = true,
	 = true,
	 = true,
	 = true,
	 = true,
	 = true,
}

return export