Difference between revisions 51814 and 51815 on wikimaniawiki

-- This module implements {{documentation}}.

-- Get required modules.
local getArgs = require('Module:Arguments').getArgs
local htmlBuilder = require('Module:HtmlBuilder')
local messageBox = require('Module:Message box')

-- Get the config table.
(contracted; show full)
		text = text .. message('sandboxNoticeDiffBlurb', 'string', {templateLink, env.compareLink})
	end
	-- Get the test cases page blurb if the page exists.
	local testcasesTitle = env.testcasesTitle
	if testcasesTitle and testcasesTitle.exists then
		local testcasesLinkDisplay = message('sandboxNoticeTestcasesLinkDisplay', 'string')
		local testcasesLink = makeWikilink(testcasesTitle.prefixedText, testcasesLinkDisplay)
		text = text .. '
  <br />' .. message('sandboxNoticeTestcasesBlurb', 'string', {testcasesLink})
	end
	-- Add the page to [[Category:Template sandboxes]].
	text = text .. makeCategoryLink(message('sandboxCategory', 'string'))
	omargs.text = text
	return messageBox.main('ombox', omargs)
end

(contracted; show full)
		local sort = (title.namespace == 0 and message('strangeUsageCategoryMainspaceSort', 'string') or '') .. title.prefixedText -- Sort on namespace.
		ret = ret .. makeCategoryLink(message('strangeUsageCategory', 'string'), sort)
	end
	return ret
end

return p