More languages
More actions
No edit summary |
(reverted to july 2023 version) Tag: Manual revert |
||
Line 1: | Line 1: | ||
local p = {} | local p = {} | ||
function p.getWorkCount(frame) | function p.getWorkCount(frame) | ||
local category = frame.args.category or '' | local category = frame.args.category or '' | ||
local pages = mw.site.stats.pagesInCategory(category) | |||
local pages = | |||
if tonumber(pages) == 1 then | if tonumber(pages) == 1 then | ||
return "1 work" | |||
else | else | ||
return pages .. " works" | |||
end | end | ||
end | end | ||