From a7d0f0cdd4e96c4068f5ecea55b124dd045ba08d Mon Sep 17 00:00:00 2001 From: Christian Kamm Date: Wed, 19 Aug 2015 10:59:34 +0200 Subject: [PATCH] Adjust wording of delete account/folder message #3643 --- src/gui/accountsettings.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gui/accountsettings.cpp b/src/gui/accountsettings.cpp index b4b1cf7be..67480fe6a 100644 --- a/src/gui/accountsettings.cpp +++ b/src/gui/accountsettings.cpp @@ -262,7 +262,7 @@ void AccountSettings::slotRemoveCurrentFolder() // _model->removeRow( selected.row() ); int ret = QMessageBox::question( this, tr("Confirm Folder Remove"), tr("

Do you really want to stop syncing the folder %1?

" - "

Note: This will not remove the files from your client.

").arg(alias), + "

Note: This will not delete any files.

").arg(alias), QMessageBox::Yes|QMessageBox::No ); if( ret == QMessageBox::No ) { @@ -524,7 +524,7 @@ void AccountSettings::slotDeleteAccount() { int ret = QMessageBox::question( this, tr("Confirm Account Delete"), tr("

Do you really want to delete the account %1?

" - "

Note: This will not remove the files from your client.

") + "

Note: This will not delete any files.

") .arg(_accountState->account()->displayName()), QMessageBox::Yes|QMessageBox::No );