模組:External links/conf
外观
local messages = {}
messages['zh'] = {
['wikidata-linkback-edit'] = '編輯維基數據鏈接',
['missing-limits'] = 'Missing limits-var in [[Module:External links/conf/$1]]',
['missing-conf'] = 'Missing content in [[Module:External links/conf/$1]]',
['msg-langcode'] = '<span style="font-family: sans-serif; cursor: default; color:var(--color-subtle,#54595d); font-size: 0.8em; bottom: 0.1em; font-weight: bold;" title="連接到$2網頁">($2)</span>', -- $1 is language code, $2 is language name
['msg-ul-prepend'] = '* ',
['msg-inline-separator'] = ', ',
}
local arguments = {
['arg-conf'] = 'conf',
['arg-title'] = 'title',
['arg-properties'] = 'properties',
['arg-maxlink'] = 'maxlink',
['arg-short'] = 'short',
['arg-languages'] = 'languages',
['arg-no-categories'] = 'no categories',
['arg-inline'] = 'inline',
['arg-track'] = 'track',
['mod-filter-all'] = 'all',
['mod-filter-separator'] = ',',
}
local p = {
['g'] = function (self, ...)
for _,v in ipairs(arg) do
if self.messages[v] then
return self.messages[v]
end
end
return '<'..arg[1]..'>'
end,
['a'] = function (self, ...)
for _,v in ipairs(arg) do
if self.arguments[v] then
return self.arguments[v]
end
end
return '<'..arg[1]..'>'
end
}
-- metatable for the export
local mt = {
-- adjust the installation of the module
['__call'] = function (self, lang)
self.messages = messages[lang]
self.arguments = arguments
return self
end
}
-- install the metatable
setmetatable(p, mt)
return p