Removed the "move" of the resources, it isn't needed for the android build anymore and if they get moved in the default repo it probably should go somewhere in /share
-- Library for localizing strings in lua scripts
local lang = loadfile(GetDataPath() .. "Locale/" .. tostring(L) .. ".lua")
if lang ~= nil then
lang()
end
function loc(text)
if lang ~= nil and locale ~= nil and locale[text] ~= nil then return locale[text]
else return text
end
end