window:94:arguments must be the length 代表什么?

What does window:94:arguments must be the same length stand for?

我想弄清楚我做错了什么,但这是我得到的唯一错误。你能给我一些提示吗?

选择Deutsch时出现错误,选择Englisch时正常。

--Size 51,18
--Zeit: 75

w, h = term.getSize()




--OS.Start
function Haupt(Inhalt)
    paintutils.drawFilledBox(1, 1, w, h, colors.blue)
    paintutils.drawLine(1, 1, 6, 1, colors.white)
    term.setTextColor(colors.gray)
    term.setCursorPos(1,1)
    term.write("MineOS")
    paintutils.drawLine(1, 3, string.len(Inhalt), 3, colors.white)
    term.setTextColor(colors.black)
    term.setCursorPos(1, 3)
    term.write(Inhalt)
    term.setCursorPos(1, 1) --ACHTUNG POS ÄNDERN

end


while true do
    local event, key = os.pullEvent( "key" )
    if key == keys.b then
        Deutsch = 0
        Englisch = 1
        break
    elseif key == keys.c then
        Deutsch = 1
        Englisch = 0
        break
    end
end







if Englisch == 1 then
    Haupt("You've chosen English. The system will start after the Tutorial.")
elseif Deutsch == 1 then
    Haupt("Du hast Deutsch gewählt. Das System wird nachdem Tutorial starten.")
   
end

ComputerCraft 告诉我 window:94:arguments must be the same length

ComputerCraft for Minecraft 1.7.10 存在错误处理非 ASCII Unicode 字符的长度,因此它在 gewählt 中的 ä 处阻塞。它已在 ComputerCraft for Minecraft 1.12.2 中修复。我试图通过使用 blit 而不是 write 来找到解决方法,但我没有成功。