Module:Version/config: Difference between revisions

From Path of Exile Wiki
Jump to navigation Jump to search
(Created page with "------------------------------------------------------------------------------- -- -- Configuration for Module:Version -- ------------------------------------------------------------------------------- local cfg = {} -- ---------------------------------------------------------------------------- -- i18n -- ---------------------------------------------------------------------------- cfg.i18n = {} cfg.i18n.categories = { versions = 'Versions', timelines = 'Ti...")
 
No edit summary
 
Line 37: Line 37:
-- ----------------------------------------------------------------------------
-- ----------------------------------------------------------------------------


 
-- Wrapper templates
cfg.wrappers = {
    version = {
        'Template:Version',
    },
}


return cfg
return cfg

Latest revision as of 17:13, 6 April 2024

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


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


-------------------------------------------------------------------------------
-- 
-- Configuration for Module:Version
-- 
-------------------------------------------------------------------------------

local cfg = {}

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

cfg.i18n = {}

cfg.i18n.categories = {
    versions = 'Versions',
    timelines = 'Timelines',
}

cfg.i18n.show_date = {
    before = '← [[Version %s|%s]]<br>%s',
    after = '[[Version %s|%s]] →<br>%s',
}

cfg.i18n.version = {
    required_args = 'Arguments "patch" and "patchdate" are required',
    multiple_versions = 'There are multiple versions with the same name',
    header = '[[Version history|Version History]]',
}

cfg.i18n.timeline = {
    version = 'Version',
}

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

-- Wrapper templates
cfg.wrappers = {
    version = {
        'Template:Version',
    },
}

return cfg