diff --git a/frontend/gettext.lua b/frontend/gettext.lua index 5ca561c40..4f3d56150 100644 --- a/frontend/gettext.lua +++ b/frontend/gettext.lua @@ -79,6 +79,8 @@ function GetText_mt.__index.changeLang(new_lang) if what and s then -- unescape \n or msgid won't match s = s:gsub("\\n", "\n") + -- unescape " or msgid won't match + s = s:gsub('\\"', '"') data[what] = (data[what] or "") .. s end end