View source for Module:See also
Jump to navigation
Jump to search
You do not have permission to edit this page, for the following reason:
You can view and copy the source of this page.
local p = {}
local lang = require('Module:Template translation').getLanguage()
local frame = mw.getCurrentFrame()
local function msg(name)
return mw.message.new(name):inLanguage(lang):plain()
end
local function generateLink(i, args)
local title = args[i]
local linktext = args['label ' .. tostring(i)] or args['l' .. tostring(i)] or nil
if args.ll then
return frame:expandTemplate{ title = 'll', args = { title, linktext } }
else
if linktext then
return string.format('[[:%s|%s]]', title, linktext)
else
return string.format('[[:%s]]', title)
end
end
end
000
1:0
Template used on this page:
Return to Module:See also.