Hello, you have come here looking for the meaning of the word
Module:bho-headword. In DICTIOUS you will not only get to know all the dictionary meanings for the word
Module:bho-headword, but we will also tell you about its etymology, its characteristics and you will know how to say
Module:bho-headword in singular and plural. Everything you need to know about the word
Module:bho-headword you have here. The definition of the word
Module:bho-headword will help you to be more precise and correct when speaking or writing your texts. Knowing the definition of
Module:bho-headword, as well as those of other words, enriches your vocabulary and provides you with more and better linguistic resources.
local export = {}
local pos_functions = {}
local links = require('Module:links')
local labels = require('Module:labels')
local lang = require('Module:languages').getByCode('bho')
local PAGENAME = mw.title.getCurrentTitle().text
local current_script = lang:findBestScript(PAGENAME)
local Deva_Kthi_translit = require('Module:Deva-Kthi-translit')
function export.show(frame)
local args = require('Module:parameters').process(frame:getParent().args,{
= {default = '?'},
= {},
})
local poscat = frame.args or error('Part of speech has not been specified. Please pass parameter 1 to the module invocation.')
local data = {lang = lang, sc = current_script, pos_category = poscat, sccat = true, categories = {}, heads = {args or PAGENAME}, genders = {}, inflections = {}}
if poscat == 'nouns' or poscat == 'proper nouns' then
if args == 'm' or args == 'f' then
table.insert(data.genders, args)
else
table.insert(data.genders, '?')
end
end
if current_script:getCode() == 'Deva' then
table.insert(data.inflections, {label = 'Kaithi', Deva_Kthi_translit.tr(head or PAGENAME, lang, require("Module:scripts").getByCode('Deva'))})
end
return require('Module:headword').full_headword(data)
end
return export