Module:Item infobox/config/sandbox: Difference between revisions

From Path of Exile Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 12: Line 12:


cfg.i18n = {}
cfg.i18n = {}
cfg.navbar = {
    view = 'view',
    edit = 'edit',
}


-- ----------------------------------------------------------------------------
-- ----------------------------------------------------------------------------

Revision as of 02:06, 20 January 2022

Module documentation[view] [edit] [history] [purge]


This is the configuration file for Module:Item infobox. This file can be edited to allow easy translation/porting of the module to other wikis.


-------------------------------------------------------------------------------
-- 
--                    Configuration for Module:Item infobox
-- 
-------------------------------------------------------------------------------

local cfg = {}

-- ----------------------------------------------------------------------------
-- i18n
-- ----------------------------------------------------------------------------

cfg.i18n = {}

cfg.navbar = {
    view = 'view',
    edit = 'edit',
}

-- ----------------------------------------------------------------------------
-- Constants
-- ----------------------------------------------------------------------------

-- Wrapper templates
cfg.wrappers = {
    query_item_infobox = {
        'Template:Item infobox',
    },
}

return cfg