Not correctly labeled checks (#8689)

This commit is contained in:
Matteo Biscosi 2024-09-02 16:22:08 +02:00
parent 6a7e11c711
commit 34b77a6974

View file

@ -412,10 +412,10 @@ local function init_check(check, mod_fname, full_path, script, script_type, subd
-- Possibly localize the input title/description
if check.gui.input_title then
check.gui.input_title = check.gui.input_title
check.gui.input_title = i18n(check.gui.input_title)
end
if check.gui.input_description then
check.gui.input_description = check.gui.input_description
check.gui.input_description = i18n(check.gui.input_description)
end
end