Module:Modifier link/config

From Path of Exile Wiki
Jump to navigation Jump to search
Module documentation[view] [edit] [history] [purge]


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


-------------------------------------------------------------------------------
-- 
-- Configuration for Module:Modifier link
-- 
-------------------------------------------------------------------------------

local cfg = {}

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

cfg.i18n = {}

cfg.i18n.categories = {
    general_errors = 'Pages with modifier link errors',
}

cfg.i18n.errors = {
    invalid_display_option = 'The display option "%s" is invalid. Accepted values are "abbr", "verbose", "stat_text", "max" and "min".',
    no_results = 'No results found.',
    multiple_results = 'Please choose only one of these modifier ids:<br>%s',
    incorrect_modid = 'Please change the name from "%s" to any of these modifier ids:<br>%s',
    undefined_statid = 'Please define any of these stat ids: %s',
}

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

-- Wrapper templates
cfg.wrappers = {
    'Template:Modifier link',
}

return cfg