Content deleted Content added
Tom.Reding (talk | contribs) m fix |
Tom.Reding (talk | contribs) m Hard-code 's' after %decade% |
||
Line 195:
end
if mw.ustring.match(description, '%%decade%%') then
if currDeca then description = mw.ustring.gsub(description, '%%decade%%', currDeca .. 's') --2000s
else description = mw.ustring.gsub(description, '%%decade%%', 'this decade') end
end
if mw.ustring.match(description, '%%century%%') then
if currCent then description = mw.ustring.gsub(description, '%%century%%', addOrd(currCent)) --21st
else description = mw.ustring.gsub(description, '%%century%%', 'this century') end
end
|