Module:Item infobox/config: 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.i18n.errors = {
    no_results_found = 'No results found',
}


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

Revision as of 18:01, 19 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 = {}

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

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

return cfg