Module:auto cat

From Laenkea
Revision as of 08:09, 6 August 2023 by Maria (talk | contribs)
Jump to navigation Jump to search
local export = {}

local function get_language_and_label(title)
	local find_by_name = require("Module:languages").find_by_name
	local language, label
	
	local words = mw.text.split(title, " ")
	for i = 1, #words do
		name = table.concat(words, " ", 1, i)
		label = table.concat(words, " ", i + 1)
		language = find_by_name(name)
		if language then break end
	end
	return language, label
end

return export