Module:Sandbox/Mefisto1029/main/s1: Difference between revisions
Jump to navigation
Jump to search
Mefisto1029 (talk | contribs) (Test module) |
Mefisto1029 (talk | contribs) No edit summary |
||
Line 12: | Line 12: | ||
cfg.i18n = {} | cfg.i18n = {} | ||
cfg.i18n.tooltips = { | |||
tooltip = 'Tooltip', | |||
} | |||
cfg.i18n.errors = { | cfg.i18n.errors = { |
Revision as of 09:48, 3 October 2025
You might want to create a documentation page for this module.
Editors can experiment in this module's sandbox and testcases pages.
Please add categories to the /doc subpage. Subpages of this module.
Editors can experiment in this module's sandbox and testcases pages.
Please add categories to the /doc subpage. Subpages of this module.
-------------------------------------------------------------------------------
--
-- Configuration for Module:Keyword
--
-------------------------------------------------------------------------------
local cfg = {}
-- ----------------------------------------------------------------------------
-- i18n
-- ----------------------------------------------------------------------------
cfg.i18n = {}
cfg.i18n.tooltips = {
tooltip = 'Tooltip',
}
cfg.i18n.errors = {
missing_id = 'Missing id parameter, which is mandatory.',
no_data = 'No keyword with the given ID exists, check [[Module:Keyword/data]] for keywords.',
}
-- ----------------------------------------------------------------------------
-- Constants
-- ----------------------------------------------------------------------------
-- Wrapper templates
cfg.wrappers = {
keyword = {
'Template:Keyword',
},
}
cfg.wrappers = {
keyword_infobox = {
'Template:Keyword infobox',
},
}
return cfg