mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-27 17:37:36 +03:00
Adjust wording of delete account/folder message #3643
This commit is contained in:
parent
488d57d81c
commit
a7d0f0cdd4
1 changed files with 2 additions and 2 deletions
|
@ -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 a new issue