모듈:etymology languages/track-bad-etym-code
보이기
이 모듈에 대한 설명문서는 모듈:etymology languages/track-bad-etym-code/설명문서에서 만들 수 있습니다
local function track(page)
require("Module:debug/track")("etymology languages/" .. page)
return true
end
-- FIXME: Temporary. Lists nonstandard codes to track, so we can consider eliminating them. Consider moving to
-- [[Module:etymology languages/data]] so it only gets loaded once per page; but that would require restructuring
-- [[Module:etymology languages/data]] (probably a good idea anyway).
local nonstandard_codes_to_track = {
-- nonstandard Latin codes
["CL."] = true,
["EL."] = true,
["LL."] = true,
["ML."] = true,
["NL."] = true,
["RL."] = true,
["VL."] = true,
-- Chinese lect codes that will be retired
["nan-hok"] = true,
}
return function(code)
if nonstandard_codes_to_track[code] then
track(code)
end
return true
end