gluon-web: fix typos
This commit is contained in:
parent
b850fff7e4
commit
3b55cbc1f3
@ -17,7 +17,7 @@ msgid "Not Found"
|
|||||||
msgstr "Nicht Gefunden"
|
msgstr "Nicht Gefunden"
|
||||||
|
|
||||||
msgid "Sorry, the object you requested was not found."
|
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."
|
msgid "Sorry, the server encountered an unexpected error."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -103,13 +103,13 @@ end
|
|||||||
-- Content-Type. Stores all extracted data associated with its parameter name
|
-- Content-Type. Stores all extracted data associated with its parameter name
|
||||||
-- in the params table withing the given message object. Multiple parameter
|
-- in the params table withing the given message object. Multiple parameter
|
||||||
-- values are stored as tables, ordinary ones as strings.
|
-- 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
|
-- file contents chunk by chunk and only the extracted file name is stored
|
||||||
-- within the params table. The callback function will be called subsequently
|
-- within the params table. The callback function will be called subsequently
|
||||||
-- with three arguments:
|
-- with three arguments:
|
||||||
-- o Table containing decoded (name, file) and raw (headers) mime header data
|
-- o Table containing decoded (name, file) and raw (headers) mime header data
|
||||||
-- o String value containing a chunk of the file 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)
|
function mimedecode_message_body(src, msg, filecb)
|
||||||
|
|
||||||
if msg and msg.env.CONTENT_TYPE then
|
if msg and msg.env.CONTENT_TYPE then
|
||||||
|
@ -58,7 +58,7 @@ return function(config, env)
|
|||||||
-- Now finally render the thing
|
-- Now finally render the thing
|
||||||
local stat, err = pcall(template)
|
local stat, err = pcall(template)
|
||||||
assert(stat, "Failed to execute template '" .. name .. "'.\n" ..
|
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
|
end
|
||||||
|
|
||||||
--- Render a certain template.
|
--- Render a certain template.
|
||||||
|
@ -235,7 +235,7 @@ static size_t validate_utf8(const unsigned char **s, size_t l, struct template_b
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* advance beyound the last found valid continuation char */
|
/* advance beyond the last found valid continuation char */
|
||||||
o = v;
|
o = v;
|
||||||
ptr += v;
|
ptr += v;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user