मॉड्यूल:category tree/poscatboiler/data/lang-specific/fa
दिखावट
"इस मॉड्यूल हेतु प्रलेख मॉड्यूल:category tree/poscatboiler/data/lang-specific/fa/doc पर बनाया जा सकता है"
local labels = {}
local handlers = {}
local lang = require("Module:languages").getByCode("fa")
labels["यौगिक क्रियाएँ"] = {
description = "{{{langname}}} light verb constructions consisting of a verb and a non-verbal element, such as a noun.",
parents = {"क्रियाएँ", "श्रेणी:Phrasal verbs by language", "यौगिक शब्दावली"},
}
table.insert(handlers, function(data)
local auxverb = data.label:match("^(.+) के साथ यौगिक क्रियाएँ$")
if auxverb then
local link = require("Module:links").full_link({ lang = lang, term = auxverb }, "शब्दावली")
local altlink = require("Module:links").full_link({ lang = lang, alt = auxverb }, "शब्दावली")
return {
description = "{{{langname}}} compound verbs with the phrasal verb " .. link .. ".",
displaytitle = "{{{langname}}} compound verbs with " .. altlink,
breadcrumb = altlink,
parents = {{name = "यौगिक क्रियाएँ", sort = auxverb}},
}
end
end)
return {LABELS = labels, HANDLERS = handlers}