Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.
Revision as of 17:45, 24 May 2025 by Kadallah (talk | contribs) (Create i18n module)

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