Module:Map variants/config/sandbox: Difference between revisions

From Path of Exile Wiki
Jump to navigation Jump to search
(Create sandbox version of Module:Map variants/config)
 
No edit summary
 
Line 14: Line 14:


cfg.i18n.named_variants = {
cfg.i18n.named_variants = {
     shaped = 'Shaped %s',
     'Shaped %s',
}
}



Latest revision as of 22:03, 24 January 2022

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


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


-------------------------------------------------------------------------------
-- 
--                    Configuration for Module:Map variants
-- 
-------------------------------------------------------------------------------

local cfg = {}

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

cfg.i18n = {}

cfg.i18n.named_variants = {
    'Shaped %s',
}

cfg.i18n.errors = {
    no_map_on_page = 'No map found on page',
}

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

-- Wrapper templates
cfg.wrappers = {
    map_variants = {
        'Template:Map variants',
    },
}

return cfg