Bu modul uchun Modul:Wikidata/alias/doc nomli hujjat sahifasini yaratishingiz mumkin
local p = {} function p.get() local s="" t= mw.wikibase.getEntityObject() if t then t= t.aliases if t then if t["ru"] then for i, k in pairs(t["ru"]) do s = s .. k["value"] .. ", " end return string.sub(s,1,string.len(s)-2) end end end return s end return p