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 19:47, 24 May 2025 by Kadallah (talk | contribs) (1 revision imported)

Documentation for this module may be created at Module:I18n/doc

local i18n = {
    label_upload_image = "Upload image",
    category_infobox_using_placeholder_image = "Pages using infobox placeholder image"
}

local p = {}

function p.new()
    local self = setmetatable({}, { __index = i18n })
    function self.translate(_, key)
        return i18n[key] or key
    end
    return self
end

return p