local configured_claims =
local function commons_formatter(id) return "https://commons.wikimedia.org/wiki/Category:" .. id:gsub(" ", "_")end
configured_claims['en'] =
local messages_conf =
messages_conf['en'] = local limits =
local p =
function p.getConfiguredClaims (self, lang) return configured_claims[lang]end
function p.getLimits (self) return limitsend
function p.getMessage (self, lang, msg) return messages_conf[lang][msg] end
-- metatable for the exportlocal mt =
-- install the metatablesetmetatable(p, mt)
return p