diff --git a/package/gluon-web/i18n/de.po b/package/gluon-web/i18n/de.po index 9481f60f..4f033308 100644 --- a/package/gluon-web/i18n/de.po +++ b/package/gluon-web/i18n/de.po @@ -17,7 +17,7 @@ msgid "Not Found" msgstr "Nicht Gefunden" msgid "Sorry, the object you requested was not found." -msgstr "Entschuldigung, das anfgeforderte Objekt wurde nicht gefunden." +msgstr "Entschuldigung, das angeforderte Objekt wurde nicht gefunden." msgid "Sorry, the server encountered an unexpected error." msgstr "" diff --git a/package/gluon-web/luasrc/usr/lib/lua/gluon/web/http/protocol.lua b/package/gluon-web/luasrc/usr/lib/lua/gluon/web/http/protocol.lua index b0a2ad1e..4e8df203 100644 --- a/package/gluon-web/luasrc/usr/lib/lua/gluon/web/http/protocol.lua +++ b/package/gluon-web/luasrc/usr/lib/lua/gluon/web/http/protocol.lua @@ -103,13 +103,13 @@ end -- Content-Type. Stores all extracted data associated with its parameter name -- in the params table withing the given message object. Multiple parameter -- values are stored as tables, ordinary ones as strings. --- If an optional file callback function is given then it is feeded with the +-- If an optional file callback function is given then it is fed with the -- file contents chunk by chunk and only the extracted file name is stored -- within the params table. The callback function will be called subsequently -- with three arguments: -- o Table containing decoded (name, file) and raw (headers) mime header data -- o String value containing a chunk of the file data --- o Boolean which indicates wheather the current chunk is the last one (eof) +-- o Boolean which indicates whether the current chunk is the last one (eof) function mimedecode_message_body(src, msg, filecb) if msg and msg.env.CONTENT_TYPE then diff --git a/package/gluon-web/luasrc/usr/lib/lua/gluon/web/template.lua b/package/gluon-web/luasrc/usr/lib/lua/gluon/web/template.lua index 84a9b5c1..18140033 100644 --- a/package/gluon-web/luasrc/usr/lib/lua/gluon/web/template.lua +++ b/package/gluon-web/luasrc/usr/lib/lua/gluon/web/template.lua @@ -58,7 +58,7 @@ return function(config, env) -- Now finally render the thing local stat, err = pcall(template) assert(stat, "Failed to execute template '" .. name .. "'.\n" .. - "A runtime error occured: " .. tostring(err or "(nil)")) + "A runtime error occurred: " .. tostring(err or "(nil)")) end --- Render a certain template. diff --git a/package/gluon-web/src/template_utils.c b/package/gluon-web/src/template_utils.c index f8ea276f..c07eab52 100644 --- a/package/gluon-web/src/template_utils.c +++ b/package/gluon-web/src/template_utils.c @@ -235,7 +235,7 @@ static size_t validate_utf8(const unsigned char **s, size_t l, struct template_b break; } - /* advance beyound the last found valid continuation char */ + /* advance beyond the last found valid continuation char */ o = v; ptr += v; }