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:
authorDiego Prado Gesto <d.pradogesto@ultimaker.com>2018-03-26 12:52:39 +0300
committerDiego Prado Gesto <d.pradogesto@ultimaker.com>2018-03-26 12:52:39 +0300
commit04c21f3f30419d6889355c2236c2690f73723ddd (patch)
tree14271c0cd49d4705baec0373053d6f77790b4933 /plugins/ModelChecker
parentff7e0bf5f9607cce79b574bb2cab9426b5057965 (diff)
CURA-4557 Minor changes in the message.
Diffstat (limited to 'plugins/ModelChecker')
-rw-r--r--plugins/ModelChecker/ModelChecker.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/ModelChecker/ModelChecker.py b/plugins/ModelChecker/ModelChecker.py
index 8a501ceb27..65d7c2e35d 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 optimal due to object size and chosen material for models: {model_names}.\n"
+ "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 the are no tiny details on the model)\n"
- "3) Use a different material").format(model_names = ", ".join([n.getName() for n in warning_nodes])))
+ "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])))
return len(warning_nodes) > 0