diff --git a/plugins/ModelChecker/ModelChecker.py b/plugins/ModelChecker/ModelChecker.py index f1e2b5d3e9..c7d36e9916 100644 --- a/plugins/ModelChecker/ModelChecker.py +++ b/plugins/ModelChecker/ModelChecker.py @@ -63,11 +63,11 @@ class ModelChecker(QObject, Extension): self._caution_message.setText(catalog.i18nc( "@info:status", - "Some models may not be printed optimally due to object size and chosen material for models: {model_names}.\n" - "Tips that may be useful to improve the print quality:\n" - "1) Use rounded corners.\n" - "2) Turn the fan off (only if there are no tiny details on the model).\n" - "3) Use a different material.").format(model_names = ", ".join([n.getName() for n in warning_nodes]))) + "
One or more 3D models may not print optimally due to the model size and material configuration:
\n" + "{model_names}
\n" + "Find out how to ensure the best possible print quality and reliability.
\n" + "" + ).format(model_names = ", ".join([n.getName() for n in warning_nodes]))) return len(warning_nodes) > 0