diff --git a/GUI/View/Import/SpecularDataImportWidget.cpp b/GUI/View/Import/SpecularDataImportWidget.cpp
index a1dbef0834e0b0c10ad68efea5ae46fd6fb12f3c..4f6a77b1ce852623c9415514ea8a45d829c639ad 100644
--- a/GUI/View/Import/SpecularDataImportWidget.cpp
+++ b/GUI/View/Import/SpecularDataImportWidget.cpp
@@ -276,14 +276,13 @@ void SpecularDataImportWidget::updatePreview()
         const int nLineRelatedWarnings = m_loader->numErrors() - warnings.size();
 
         if (nLineRelatedWarnings == 1)
-            warnings << "1 line related warning. Please check the data tab on the right for more "
-                        "information.";
+            warnings << "There is a warning about one input line. "
+                        "See the \"Parser warnings\" in the rightmost column in the data tab.";
         else if (nLineRelatedWarnings > 1)
-            warnings
-                << QString(
-                       "%1 line related warnings. Please check the data tab on the right for more "
-                       "information.")
-                       .arg(nLineRelatedWarnings);
+            warnings << QString(
+                            "%1 warnings about specific input lines. "
+                            "See the \"Parser warnings\" in the rightmost column in the data tab.")
+                            .arg(nLineRelatedWarnings);
 
         if (warnings.size() > 1)
             for (auto& w : warnings)