Hello, you have come here looking for the meaning of the word
Module:hrx-cell. In DICTIOUS you will not only get to know all the dictionary meanings for the word
Module:hrx-cell, but we will also tell you about its etymology, its characteristics and you will know how to say
Module:hrx-cell in singular and plural. Everything you need to know about the word
Module:hrx-cell you have here. The definition of the word
Module:hrx-cell will help you to be more precise and correct when speaking or writing your texts. Knowing the definition of
Module:hrx-cell, as well as those of other words, enriches your vocabulary and provides you with more and better linguistic resources.
local m_links = require("Module:links")
local lang = require("Module:languages").getByCode("hrx")
local export = {}
local accel_forms = {
--NOUNS
ncs = "nom|s",
ds = "dat|s",
ncp = "nom|p",
dp = "dat|p",
}
function export.create(frame)
local args = frame:getParent().args
local links = {}
if not args or args == "" then
return "―"
else
local accel_form = args
local accel
if accel_form then
local mode = args
if mode and mode_prefix then
accel_form = mode_prefix .. accel_form
end
if accel_forms then
if mode and mode_prepend then
accel_form = mode_prepend .. accel_forms
else
accel_form = accel_forms
end
end
accel = {form = accel_form}
end
local words = mw.text.split(args, "%s*,%s*")
if words then
for i,j in ipairs(words) do
table.insert(links, m_links.full_link({lang = lang, term = j, accel = accel}))
end
end
end
return table.concat(links, ", ")
end
return export