aboutsummaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2019-12-27 11:41:46 -0800
committerJaap Keuter <jaap.keuter@xs4all.nl>2019-12-28 08:04:09 +0000
commit17492b8a6b21dad6295fcaf7800ceea2788c76a6 (patch)
treeb29197f4221d1dbb7f423892129da5214727e840 /ui
parent893f7f3d0ce00df8bf7b4173dd46d3d8d1b256c9 (diff)
Qt: Use a neutral tone in an error message.
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>
Diffstat (limited to 'ui')
-rw-r--r--ui/qt/about_dialog.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/qt/about_dialog.cpp b/ui/qt/about_dialog.cpp
index 68f69ec2e0..8c3dd767ee 100644
--- a/ui/qt/about_dialog.cpp
+++ b/ui/qt/about_dialog.cpp
@@ -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)));
}
}
}