local export = {}
local u = mw.ustring.char
local a, b, c = u(0xF000), u(0xF001), u(0xF002)

local oneChar = {
	["č"] = "c" .. a, ["š"] = "s" .. a, ["z"] = "s" .. b, ["ž"] = "s" .. c, ["ä"] = "y" .. a, ["ö"] = "y" .. b
}

function export.makeSortKey(text, lang, sc)
	return mw.ustring.upper(mw.ustring.gsub(mw.ustring.lower(text), ".", oneChar))
end

return export