بەڵگەدارکردنی مۆدیوول[دروست بکە]
local p = {}

local numConv = require( "Module:Numeral converter" ).convert

-- Use this function from templates.
function p.convert_template(frame)
  return p.convert(frame.args[1])
end

function p.convert(text)
    return numConv(
        "ckb", 
        text
        :gsub("January", "کانوونی دووەم")
        :gsub("February", "شوبات")
        :gsub("March", "ئازار")
        :gsub("April", "نیسان")
        :gsub("May", "ئایار")
        :gsub("June", "حوزەیران")
        :gsub("July", "تەممووز")
        :gsub("August", "ئاب")
        :gsub("September", "ئەیلوول")
        :gsub("October", "تشرینی یەکەم")
        :gsub("November", "تشرینی دووەم")
        :gsub("December", "کانوونی یەکەم")
    )
end

return p