diff options
author | Paul Ouellette <oue.paul18@gmail.com> | 2019-01-16 07:39:13 -0500 |
---|---|---|
committer | Loïc Blot <nerzhul@users.noreply.github.com> | 2019-01-16 13:39:13 +0100 |
commit | 3fce27ece5629a805a5d6c508f130170c6ccafab (patch) | |
tree | 9e0684d65ba402723ac142b1851f9e44a72ad698 /builtin/fstk | |
parent | ed1415f78d7820c44e9a219b578b9fbcdce0cc65 (diff) | |
download | minetest-3fce27ece5629a805a5d6c508f130170c6ccafab.tar.gz minetest-3fce27ece5629a805a5d6c508f130170c6ccafab.tar.bz2 minetest-3fce27ece5629a805a5d6c508f130170c6ccafab.zip |
Fix some misspellings (#8104)
Diffstat (limited to 'builtin/fstk')
-rw-r--r-- | builtin/fstk/ui.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/builtin/fstk/ui.lua b/builtin/fstk/ui.lua index 3ac0386ca..a3e3a092a 100644 --- a/builtin/fstk/ui.lua +++ b/builtin/fstk/ui.lua @@ -92,9 +92,9 @@ function ui.update() formspec = wordwrap_quickhack(gamedata.errormessage) local error_title if string.find(gamedata.errormessage, "ModError") then - error_title = fgettext("An error occured in a Lua script, such as a mod:") + error_title = fgettext("An error occurred in a Lua script, such as a mod:") else - error_title = fgettext("An error occured:") + error_title = fgettext("An error occurred:") end formspec = "size[12,5]" .. "label[0.5,0;" .. error_title .. |