Module:PageDates
Documentation for this module may be created at Module:PageDates/doc
local p = {}
function p.dates(frame)
local lang = mw.language.getContentLanguage()
local updatedTimestamp = frame:preprocess("{{REVISIONTIMESTAMP}}")
local updatedDate = lang:formatDate("j F Y", updatedTimestamp)
return string.format("%s", updatedDate)
end
return p