mirror of
https://github.com/nextcloud/desktop.git
synced 2025-10-26 11:17:43 +00:00
Adjust wording of delete account/folder message #3643
This commit is contained in:
parent
488d57d81c
commit
a7d0f0cdd4
@ -262,7 +262,7 @@ void AccountSettings::slotRemoveCurrentFolder()
|
||||
// _model->removeRow( selected.row() );
|
||||
int ret = QMessageBox::question( this, tr("Confirm Folder Remove"),
|
||||
tr("<p>Do you really want to stop syncing the folder <i>%1</i>?</p>"
|
||||
"<p><b>Note:</b> This will not remove the files from your client.</p>").arg(alias),
|
||||
"<p><b>Note:</b> This will <b>not</b> delete any files.</p>").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("<p>Do you really want to delete the account <i>%1</i>?</p>"
|
||||
"<p><b>Note:</b> This will not remove the files from your client.</p>")
|
||||
"<p><b>Note:</b> This will <b>not</b> delete any files.</p>")
|
||||
.arg(_accountState->account()->displayName()),
|
||||
QMessageBox::Yes|QMessageBox::No );
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user