From 524a3d66457682d6f47d11320498bc76a146ee99 Mon Sep 17 00:00:00 2001 From: kervala Date: Thu, 13 Jul 2017 22:53:20 +0200 Subject: [PATCH] Fixed: Description of "delete profile" action (all files are really deleted) --HG-- branch : develop --- code/ryzom/tools/client/ryzom_installer/src/profilesdialog.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/ryzom/tools/client/ryzom_installer/src/profilesdialog.cpp b/code/ryzom/tools/client/ryzom_installer/src/profilesdialog.cpp index 391e31eb9..866be074d 100644 --- a/code/ryzom/tools/client/ryzom_installer/src/profilesdialog.cpp +++ b/code/ryzom/tools/client/ryzom_installer/src/profilesdialog.cpp @@ -83,7 +83,7 @@ void CProfilesDialog::onAddProfile() void CProfilesDialog::onDeleteProfile() { - QMessageBox::StandardButton res = QMessageBox::question(this, tr("Confirmation"), tr("You're going to delete a profile, files won't be deleted and you'll have to do that manually.\nAre you sure to delete this profile?")); + QMessageBox::StandardButton res = QMessageBox::question(this, tr("Confirmation"), tr("You're going to delete a profile, all files that belong to it (configuration, saves, logs, screenshots, etc...) will be deleted.\nAre you sure to delete this profile?")); if (res != QMessageBox::Yes) return;