Qt: Use a neutral tone in an error message.
authorGerald Combs <gerald@wireshark.org>
Fri, 27 Dec 2019 19:41:46 +0000 (11:41 -0800)
committerJaap Keuter <jaap.keuter@xs4all.nl>
Sat, 28 Dec 2019 08:04:09 +0000 (08:04 +0000)
Don't yell at the user.

Change-Id: Ibedb0a1bf7ea13feeaf6fe4f2c78bd7f3d1e65b8
Reviewed-on: https://code.wireshark.org/review/35572
Reviewed-by: Gerald Combs <gerald@wireshark.org>
Petri-Dish: Gerald Combs <gerald@wireshark.org>
Tested-by: Petri Dish Buildbot
Reviewed-by: Jaap Keuter <jaap.keuter@xs4all.nl>
ui/qt/about_dialog.cpp

index 68f69ec2e0f509b3763c9ecdaa1f7827b3700ff3..8c3dd767eea5a7c3e1c13572797940f78942f909 100644 (file)
@@ -487,7 +487,7 @@ void AboutDialog::urlDoubleClicked(const QModelIndex &idx)
             if (! QDir().mkpath(urlText))
             {
                 QMessageBox::warning(this, tr("The directory could not be created"),
-                                     QString(tr("The directory %1 could not be created!").arg(urlText)));
+                                     QString(tr("The directory %1 could not be created.").arg(urlText)));
             }
         }
     }