Salome HOME
Pipe validator fix
[modules/shaper.git] / src / FeaturesPlugin / FeaturesPlugin_Translation.cpp
index 41a93ddba767bfc57799a41b1967e4a253ee333c..c3931387cf2de04422574dc778d6052237958fc7 100644 (file)
@@ -93,17 +93,17 @@ void FeaturesPlugin_Translation::execute()
 
       // Checking that the algorithm worked properly.
       if(!aTranslationAlgo.isDone()) {
-        static const std::string aFeatureError = "Translation algorithm failed";
+        static const std::string aFeatureError = "Error: Translation algorithm failed.";
         setError(aFeatureError);
         break;
       }
       if(aTranslationAlgo.shape()->isNull()) {
-        static const std::string aShapeError = "Resulting shape is Null";
+        static const std::string aShapeError = "Error: Resulting shape is Null.";
         setError(aShapeError);
         break;
       }
       if(!aTranslationAlgo.isValid()) {
-        std::string aFeatureError = "Warning: resulting shape is not valid";
+        std::string aFeatureError = "Error: Resulting shape is not valid.";
         setError(aFeatureError);
         break;
       }