تغییر منو
تغییر منوی شخصی
به سامانه وارد نشدید
Your IP address will be publicly visible if you make any edits.

پودمان:Number of works

از ویکی‌پرولتار

توضیحات این پودمان می‌تواند در پودمان:Number of works/توضیحات قرار گیرد.

-- This module is DEPRECATED. We turned to using DPL lists to count numbers of works in a library card.

local p = {}

function p.getWorkCount(frame)
    local category = frame.args.category or ''
    local pages = mw.site.stats.pagesInCategory(category)
    
    if tonumber(pages) == 1 then
        return "1 work"
    else
        return pages .. " works"
    end
end

function p.main(frame)
    return p.getWorkCount(frame)
end

return p