Documentation for this module may be created at Module:I18n/doc
local i18n = {}
function i18n:new()
local o = {}
setmetatable(o, self)
self.__index = self
return o
end
function i18n:translate(key)
return key -- You can expand this later
end
return i18n