Backed out
changeset f9f71cccb5c3 - Wuzzy is right, the license is incompatible.
I'd misread the wording on https://fontlibrary.org/en/font/symbola
The terms on the author's site prevent using it with almost all FOSS projects, and even prevent using it in a merge like this.
We'll just have to find some other font to improve coverage.
-- Library for localizing strings in lua scripts
if LOCALE ~= "en" then
HedgewarsScriptLoad("Locale/" .. tostring(LOCALE) .. ".lua", false)
end
function loc(text)
if locale ~= nil and locale[text] ~= nil then return locale[text]
else return text
end
end
function loc_noop(text)
return text
end