Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLipu Fei <lipu.fei815@gmail.com>2018-04-16 18:21:09 +0300
committerLipu Fei <lipu.fei815@gmail.com>2018-04-16 18:21:12 +0300
commite5d795cc0b31b6818e048812c35f3a810e1b1ea5 (patch)
tree1d212c7f3eee712192ac70996981eb375b156258 /plugins/ModelChecker
parent4bb69623026e058add33101fa1cc4ae789e43d6b (diff)
Update model checker text
CURA-5237
Diffstat (limited to 'plugins/ModelChecker')
-rw-r--r--plugins/ModelChecker/ModelChecker.py10
1 files changed, 5 insertions, 5 deletions
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])))
+ "<p>One or more 3D models may not print optimally due to the model size and material configuration:</p>\n"
+ "<p>{model_names}</p>\n"
+ "<p>Find out how to ensure the best possible print quality and reliability.</p>\n"
+ "<p><a href=\"https://ultimaker.com/3D-model-assistant\">View print quality guide</a></p>"
+ ).format(model_names = ", ".join([n.getName() for n in warning_nodes])))
return len(warning_nodes) > 0