The list of states with their information for the module is in Module:State/List.
Implements {{State}} and {{States}}.
local p = {};
states = require('Module:State/List');
local getArgs = require('Module:Arguments').getArgs
function p.state_name(frame)
local args = getArgs(frame)
return p._state_name(args)
end
function p.state_name2(frame)
local args = getArgs(frame)
return p._state_name2(args)
end
function p._state_name(args)
id = tonumber(args[1])
if not states[id] then
return "<span style=\"color: red;\">[[Module:State/List]] does not have state:</span>"
else
return states[id].name
end
end
function p._state_name2(args)
local id = tonumber(args[1])
if not states[id] then
return "<span style=\"color: red;\">[[Module:State/List]] does not have state:</span>"
else
return states[id].name2
end
end
function p.state_names(frame)
local args = getArgs(frame)
return p._state_names(args)
end
function p.state_names2(frame)
local args = getArgs(frame)
return p._state_names2(args)
end
function p._state_names(args)
output = {}
for i, j in pairs(args) do
if type(i) == "number" then
if not states[tonumber(j)] then
return "<span style=\"color: red;\">[[Module:State/List]] 没有中文名:" .. j .. "</span>"
end
s = states[tonumber(j)].name
if not states[tonumber(j)] then
return "<span style=\"color: red;\">[[Module:State/List]]没有英文名: " .. j .. "</span>"
end
s = states[tonumber(j)].name2
if not args.nob then
s = string.format("'''%s'''", s)
end
if not args.noid then
s = s .. string.format(" ''(%s)''", j)
end
output[i] = s
end
end
if args.sep then
sep = args.sep:gsub("\\n", "\n"):gsub("_", " ")
s = table.concat(output, sep)
elseif #output == 1 then
s = output[1]
elseif #output == 2 then
s = output[1] .. " and " .. output[2]
else
s = table.concat(output, ", ", 1, #output-1) .. ", and " .. output[#output]
end
return s
end
return p