Module:Version/config

From Path of Exile Wiki
Revision as of 09:20, 6 April 2024 by Vinifera7 (talk | contribs) (Created page with "------------------------------------------------------------------------------- -- -- Configuration for Module:Version -- ------------------------------------------------------------------------------- local cfg = {} -- ---------------------------------------------------------------------------- -- i18n -- ---------------------------------------------------------------------------- cfg.i18n = {} cfg.i18n.categories = { versions = 'Versions', timelines = 'Ti...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
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
-- ----------------------------------------------------------------------------



return cfg