Modul:accel/hi
Qiyofa
Bu modul uchun Modul:accel/hi/doc nomli hujjat sahifasini yaratishingiz mumkin
return {generate = function (params, entry)
local pos_to_template = {
['noun'] = 'hi-noun form',
['verb'] = 'hi-verb form',
['adjective'] = 'hi-adj form',
['pronoun'] = 'hi-pron form',
['determiner'] = 'hi-det form',
['postposition'] = 'hi-post form',
}
if pos_to_template[params.pos] then
entry.head = "{{" .. pos_to_template[params.pos] ..
(params.target ~= params.target_pagename and "|head=" .. params.target or "") ..
(params.transliteration and "|tr=" .. params.transliteration or "") ..
(params.gender and "|g=" .. params.gender or "") ..
"}}"
end
entry.pronunc = "* {{hi-IPA" .. (params.transliteration and "|" .. params.transliteration or "") .. "}}"
end}