Modül:ProofreadStats
Görünüm
Bu modül için bir Modül:ProofreadStats/belge belgelendirmesi oluşturabilirsiniz
-- This module is edited by the bot to invalidate cache when new stats are compiled
-- or when the versionned source is updated; changes to code here will not last.
-- TIMESTAMP 1597681063
local stats = mw.loadData('Modül:ProofreadStats/data')
local export = {}
function export.value( frame )
if( stats[frame.args[1]] ) then
return stats[frame.args[1]][0+frame.args[2]]
end
return nil
end
function export.total( frame )
book = stats[frame.args[1]]
return book[0]+book[1]+book[2]+book[3]+book[4]+book['m']
end
function export.updated()
return stats['date']
end
return export